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!)
A010552 Multiply successively by 1 (once), 2 (twice), 3 (thrice), etc. 1
1, 1, 2, 4, 12, 36, 108, 432, 1728, 6912, 27648, 138240, 691200, 3456000, 17280000, 86400000, 518400000, 3110400000, 18662400000, 111974400000, 671846400000, 4031078400000, 28217548800000, 197522841600000, 1382659891200000, 9678619238400000, 67750334668800000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0)=1, a(n) = a(n-1)*floor(sqrt(2*n)+1/2)) for n>0. - Alois P. Heinz, May 20 2013
MAPLE
a:= proc(n) option remember; `if`(n=0, 1,
a(n-1) * floor(sqrt(2*n)+1/2))
end:
seq(a(n), n=0..30); # Alois P. Heinz, May 20 2013
MATHEMATICA
t = Table[n, {n, 9}, {n}] // Flatten; b[n_] := t[[n]]; a[0] = 1; a[n_] := a[n] = b[n] a[n-1]; Table[a[n], {n, 0, t // Length}] (* Jean-François Alcover, Feb 21 2016 *)
PROG
(PARI) lista(nn) = {na = 1; i = 0; im = 1; print1(na, ", "); while (i < nn, for (j=1, im, na *= im; print1(na, ", "); i++; ); im++; ); } \\ Michel Marcus, May 20 2013
CROSSREFS
A002109 is a subsequence.
Cf. A002024.
Sequence in context: A224540 A025579 A214936 * A149841 A149842 A149843
KEYWORD
nonn
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)