login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A154229 A recursive triangular sequence: A(n,k)= A(n - 1, k - 1) + A(n - 1, k) +(n*(n + 1)/2)^2*A(n - 2, k - 1). 0
1, 1, 1, 1, 38, 1, 1, 139, 139, 1, 1, 365, 8828, 365, 1, 1, 807, 70492, 70492, 807, 1, 1, 1592, 357459, 7062136, 357459, 1592, 1, 1, 2889, 1404923, 98777227, 98777227, 1404923, 2889, 1, 1, 4915, 4631612, 824036625, 14498379854, 824036625, 4631612 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,5

COMMENTS

Row sums are:

{1, 2, 40, 280, 9560, 142600, 7780240, 200370080, 16155726160, 638430944320,...}.

FORMULA

A(n,k)= A(n - 1, k - 1) + A(n - 1, k) + (n*(n + 1)/2)^2*A(n - 2, k - 1).

EXAMPLE

{1},

{1, 1},

{1, 38, 1},

{1, 139, 139, 1},

{1, 365, 8828, 365, 1},

{1, 807, 70492, 70492, 807, 1},

{1, 1592, 357459, 7062136, 357459, 1592, 1},

{1, 2889, 1404923, 98777227, 98777227, 1404923, 2889, 1},

{1, 4915, 4631612, 824036625, 14498379854, 824036625, 4631612, 4915, 1},

{1, 7941, 13375752, 5078560312, 314123528154, 314123528154, 5078560312, 13375752, 7941, 1}

MATHEMATICA

A[n_, 1] := 1; A[n_, n_] := 1;

A[n_, k_] := A[n - 1, k - 1] + A[n - 1, k] + (n*(n + 1)/2)^2*A[n - 2, k - 1];

Table[Table[A[n, m], {m, 1, n}], {n, 1, 10}];

Flatten[%]

CROSSREFS

Sequence in context: A171407 A023930 A022072 * A037936 A121672 A160147

Adjacent sequences:  A154226 A154227 A154228 * A154230 A154231 A154232

KEYWORD

nonn,tabl,uned

AUTHOR

Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Jan 05 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 05:54 EST 2012. Contains 205985 sequences.