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!)
A005832 Product k^(2^(k-1)), k = 1..n.
(Formerly M3724)
1
1, 4, 324, 21233664, 3240000000000000000, 25786061996226338865429872640000000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
REFERENCES
M. E. Mays, A worst case of the Fibonacci-Sylvester expansion, J. Combin. Math. Combin. Computing, 1 (1987), 141-148.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
MAPLE
a:= proc(n) a(n):= `if`(n=1, 1, a(n-1)*n^(2^(n-1))) end:
seq(a(n), n=1..7); # Alois P. Heinz, May 25 2013
MATHEMATICA
Table[Product[k^(2^(k - 1)), {k, 1, n}], {n, 1, 10}] (* Soumadeep Ghosh, Feb 15 2016 *)
PROG
(PARI) a(n) = prod(k=1, n, k^(2^(k-1))) \\ Michel Marcus, May 25 2013
CROSSREFS
Sequence in context: A368619 A368369 A053917 * A195501 A075768 A135442
KEYWORD
nonn,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 April 25 16:42 EDT 2024. Contains 371989 sequences. (Running on oeis4.)