<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>tmurata</author_name>
  <author_url>https://blog.hatena.ne.jp/tmurata/</author_url>
  <blog_title>tmurataの日記</blog_title>
  <blog_url>https://tmurata.hatenadiary.org/</blog_url>
  <categories>
    <anon>SICP</anon>
  </categories>
  <description>Pascal三角形の要素を計算する手続き 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1上から n 段, 左から k 番目の要素を計算する感じで。 ※ 1段目の要素数は1, 2段目の要素数は 2, 3段目の要素数は3,... k = 1, k = n の場合 要素は1 f(n, k) = f(n - 1, k - 1) + f(n - 1, k) f(n, k) で (k (define (pascal-triangle n k) (if (or (&lt;= k 1) (&lt;= n k)) 1 (+ (pascal-triangle (- n 1) (- k 1)) (pascal-tr…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Ftmurata.hatenadiary.org%2Fentry%2F20090330%2F1238370771&quot; title=&quot;SICP問題1.12 - tmurataの日記&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url>https://images-fe.ssl-images-amazon.com/images/I/51xj-xFKUXL._SL160_.jpg</image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2009-03-30 08:52:51</published>
  <title>SICP問題1.12</title>
  <type>rich</type>
  <url>https://tmurata.hatenadiary.org/entry/20090330/1238370771</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
