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!)
A047844 Patrick De Geest's "Generations" array read by antidiagonals: a(n,1) = n-th prime, a(1,k+1) = a(2,k), a(n,k+1) = a(n-1,k) + a(n+1,k). 20

%I #23 Feb 03 2019 01:43:59

%S 2,3,3,5,7,7,7,10,13,13,11,16,23,30,30,13,20,30,43,56,56,17,28,44,67,

%T 97,127,127,19,32,52,82,125,181,237,237,23,40,68,112,179,276,403,530,

%U 530,29,48,80,132,214,339,520,757,994,994,31,54,94,162,274

%N Patrick De Geest's "Generations" array read by antidiagonals: a(n,1) = n-th prime, a(1,k+1) = a(2,k), a(n,k+1) = a(n-1,k) + a(n+1,k).

%H Nathaniel Johnston, <a href="/A047844/b047844.txt">Table of n, a(n) for n = 1..16653</a>

%e Array begins:

%e 2, 3, 7, 13, 30, 56, 127, 237, 530, ...

%e 3, 7, 13, 30, 56, 127, 237, 530, 994, ...

%e 5, 10, 23, 43, 97, 181, 403, 757, 1662, ...

%e 7, 16, 30, 67, 125, 276, 520, 1132, 2156, ...

%p A047844:=proc(n,k)global a:if(type(a[n,k],integer))then return a[n,k]:elif(k=1)then a[n,k]:=ithprime(n):elif(n=1)then a[n,k]:=A047844(2,k-1):else a[n,k]:=A047844(n-1,k-1)+A047844(n+1,k-1):fi:return a[n,k]:end:

%p for d from 1 to 8 do for m from 1 to d do print(A047844(d-m+1,m)):od:od: # _Nathaniel Johnston_, Apr 11 2011

%t a[n_, 1] := a[n, 1] = Prime[n]; a[1, k_] := a[1, k] = a[2, k-1]; a[n_, k_] := a[n, k] = a[n-1, k-1] + a[n+1, k-1]; Table[a[n-k+1, k], {n, 1, 11}, {k, 1, n}] // Flatten (* _Jean-François Alcover_, Nov 26 2013 *)

%o (PARI) a(n,k)=if(k==1,prime(n),n==1,a(2,k-1),a(n-1,k-1)+a(n+1,k-1))

%o for(s=2,9,for(k=1,s-1,print1(a(s-k,k)", "))) \\ _Charles R Greathouse IV_, Nov 26 2013

%Y Columns give A000040, A048448-A048455. See also A048456-A048466.

%K nonn,tabl,easy,nice

%O 1,1

%A _N. J. A. Sloane_

%E a(46)-a(60) from _Nathaniel Johnston_, Apr 11 2011

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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)