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!)
A154226 List of pairs: {(n*(n+1)/2)^2, (n!)^3}. 1
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; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(2n+1) = A000442(n) = (n!)^3.
a(2n) = A000537(n) = (n*(n+1)/2)^2.
MATHEMATICA
a[0] = 0; a[n_] := a[n] = n^3 + a[n - 1];
b[0] = 1; b[n_] := b[n] = n^3*b[n - 1];
Flatten[Table[{a[n], b[n]}, {n, 0, 15}]]
PROG
(Magma) &cat[[(n*(n+1)/2)^2, Factorial(n)^3]: n in [0..15]]; // Vincenzo Librandi, Sep 07 2016
CROSSREFS
Sequence in context: A251091 A159078 A253090 * A177187 A030027 A082201
KEYWORD
nonn,easy,less
AUTHOR
Roger L. Bagula, Jan 05 2009
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 July 9 14:31 EDT 2024. Contains 374187 sequences. (Running on oeis4.)