login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A061591
a(n) = 2^x, where x = p*(p-1)/2 and p is the n-th prime.
1
2, 8, 1024, 2097152, 36028797018963968, 302231454903657293676544, 87112285931760246646623899502532662132736, 2993155353253689176481146537402947624255349848014848
OFFSET
1,1
LINKS
MATHEMATICA
Table[2^((p(p-1))/2), {p, Prime[Range[10]]}] (* Harvey P. Dale, Sep 03 2024 *)
PROG
(PARI) { n=0; forprime (p=2, prime(22), write("b061591.txt", n++, " ", 2^(p*(p - 1)/2)) ) } \\ Harry J. Smith, Jul 25 2009
CROSSREFS
Cf. A007955, A006308. The exponents x are in A008837.
Sequence in context: A004491 A132573 A322142 * A103085 A084148 A014115
KEYWORD
nonn
AUTHOR
Labos Elemer, May 22 2001
EXTENSIONS
Offset changed from 2 to 1 by Harry J. Smith, Jul 25 2009
STATUS
approved