login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A046936 Same rule as Aitken triangle (A011971) except a(0,0)=0, a(1,0)=1. 6
0, 1, 1, 1, 2, 3, 3, 4, 6, 9, 9, 12, 16, 22, 31, 31, 40, 52, 68, 90, 121, 121, 152, 192, 244, 312, 402, 523, 523, 644, 796, 988, 1232, 1544, 1946, 2469, 2469, 2992, 3636, 4432, 5420, 6652, 8196, 10142, 12611, 12611, 15080, 18072, 21708, 26140 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
Don Knuth, Email to N. J. A. Sloane, Jan 29 2018
EXAMPLE
Triangle starts:
0,
1, 1,
1, 2, 3,
3, 4, 6, 9,
9, 12, 16, 22, 31,
31, 40, 52, 68, 90, 121,
121, 152, 192, 244, 312, 402, 523,
523, 644, 796, 988, 1232, 1544, 1946, 2469,
2469, 2992, 3636, 4432, 5420, 6652, 8196, 10142, 12611,
12611, 15080, ...
MATHEMATICA
a[0, 0] = 0; a[1, 0] = 1; a[n_, 0] := a[n, 0] = a[n-1, n-1]; a[n_, k_] := a[n, k] = a[n, k-1] + a[n-1, k-1]; Table[a[n, k], {n, 0, 9}, {k, 0, n}] // Flatten (* Jean-François Alcover, Nov 15 2013 *)
PROG
(Haskell)
a046936 n k = a046936_tabl !! n !! k
a046936_row n = a046936_tabl !! n
a046936_tabl = [0] : iterate (\row -> scanl (+) (last row) row) [1, 1]
-- Reinhard Zumkeller, Jan 01 2014
(Python 3)
from itertools import accumulate
def A046936(): # Compare function Gould_diag in A121207.
yield [0]
accu = [1, 1]
while True:
yield accu
accu = list(accumulate([accu[-1]] + accu))
g = A046936()
[next(g) for _ in range(9)] # Peter Luschny, Apr 25 2016
CROSSREFS
Borders give A040027. Reading across rows gives A007604.
Sequence in context: A228362 A155118 A091275 * A187067 A017831 A132289
KEYWORD
tabl,easy,nice,nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 06:44 EDT 2024. Contains 371782 sequences. (Running on oeis4.)