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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A154226 List of pairs: {((n*(n+1)/2)^2, (n!)^3}. 0
0, 1, 1, 1, 9, 8, 36, 216, 100, 13824, 225, 1728000, 441, 373248000, 784, 128024064000, 1296, 65548320768000, 2025, 47784725839872000, 3025, 47784725839872000000, 4356, 63601470092869632000000, 6084 (list; graph; refs; listen; history; internal format)
OFFSET

0,5

FORMULA

{((n*(n+1)/2)^2, (n!)^3}.

MATHEMATICA

Clear[a, n, n]; a[0] = 0; a[n_] := a[n] = n^3 + a[n - 1];

b[0] = 1; b[n_] := b[n] = n^3*b[n - 1];

Table[{a[n] - (n*(n + 1)/2)^2, b[n] - (n!)^3}, {n, 0, 10}];

Flatten[Table[{a[n], b[n]}, {n, 0, 15}]]

CROSSREFS

Sequence in context: A063561 A068823 A159078 * A177187 A030027 A082201

Adjacent sequences:  A154223 A154224 A154225 * A154227 A154228 A154229

KEYWORD

nonn,tabf

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 16 17:11 EST 2012. Contains 205938 sequences.