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!)
A046967 a(1) = 2, a(n) = a(n-1)^prime(n) for n > 1. 2
2, 8, 32768, 40564819207303340847894502572032 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(3)=32768 because (2^3)^5=32768.
MATHEMATICA
RecurrenceTable[{a[1]==2, a[n]==a[n-1]^Prime[n]}, a[n], {n, 4}] (* Harvey P. Dale, Jul 18 2011 *)
PROG
(PARI) a(n)=if(n<2, 1, a(n-1)^prime(n)) \\ Charles R Greathouse IV, Jun 20 2013
CROSSREFS
Sequence in context: A309860 A058437 A185681 * A007753 A272331 A256065
KEYWORD
nonn,nice
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.)