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!)
A076954 a(n) = Product_{i=1..n} prime(i)^i. 38
1, 2, 18, 2250, 5402250, 870037764750, 4199506113235182750, 1723219765760312626547490750, 29266411525287522788837599332989370750, 52713275010243038997421106186697438702252144407250, 22176856087751973465466098269669474342964368337745368642450857250 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
For n >= 3, a(n) ends in 250 or 750. - Jianing Song, Jan 27 2019
LINKS
FORMULA
a(0) = 1, a(n+1) = a(n)*{prime(n+1)^(n+1)}.
MAPLE
seq(mul(ithprime(i)^i, i=1..n), n=0..13);
MATHEMATICA
Table[Times@@Table[Prime[i]^i, {i, n}], {n, 10}] (* Alonso del Arte, Sep 30 2011 *)
Join[{1}, FoldList[Times, Table[Prime[i]^i, {i, 10}]]] (* Harvey P. Dale, Dec 16 2022 *)
PROG
(PARI)
a(n) = { if (n <= 0, return(1)); prod(i = 1, n, prime(i)^i); }
vector(11, i, a(i-1)) \\ Gheorghe Coserea, Aug 24 2015
CROSSREFS
Partial products of A062457. - Michel Marcus, Jan 28 2019
Sequence in context: A334623 A260610 A333164 * A206847 A259654 A060598
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Oct 20 2002
EXTENSIONS
More terms from Sascha Kurz, Jan 22 2003
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 07:41 EDT 2024. Contains 371964 sequences. (Running on oeis4.)