The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A047675 Square array a(n,k) read by antidiagonals: a(n,1)=n, a(1,k)=k, a(n,k) = a(n-1,k-1)*a(n-1,k)*a(n,k-1). 4
1, 2, 2, 3, 4, 3, 4, 24, 24, 4, 5, 288, 2304, 288, 5, 6, 5760, 15925248, 15925248, 5760, 6, 7, 172800, 26418075402240, 584325558976905216, 26418075402240, 172800, 7, 8, 7257600, 26294650153960734720000, 245834178389044369818454697074564792320 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
A047675 := proc(n, k) option remember; if n = 1 then k; elif k = 1 then n; else A047675(n-1, k-1)*A047675(n, k-1)*A047675(n-1, k); fi; end;
MATHEMATICA
a[n_, 1] := n; a[1, k_] := k; a[n_, k_] := a[n, k] = a[n-1, k-1]*a[n-1, k]*a[n, k-1]; Table[a[n-k+1, k], {n, 1, 8}, {k, 1, n}] // Flatten (* Jean-François Alcover, Oct 08 2013 *)
CROSSREFS
Main diagonal is A047676. Rows give A047677, A047678.
Sequence in context: A094508 A183517 A080046 * A187199 A297907 A298501
KEYWORD
nonn,tabl,nice,easy
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 May 13 23:15 EDT 2024. Contains 372524 sequences. (Running on oeis4.)