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”).

A141083
a(n) = 2^(p - 2)*(2^p - 2), where p = prime(n).
0
2, 12, 240, 4032, 1047552, 16773120, 4294901760, 68719214592, 17592181850112, 72057593769492480, 1152921503533105152, 4722366482800925736960, 1208925819613529663078400, 19342813113829668748787712
OFFSET
1,1
FORMULA
a(n) = A020522(prime(n)-1). - Michel Marcus, Feb 18 2021
EXAMPLE
Prime(1)=2, so a(1) = 2^(2 - 2)*(2^2 - 2) = 2^0*(4-2) = 2.
Prime(2)=3, so a(2) = 2^(3 - 2)*(2^3 - 2) = 2^1*(8-2) = 12.
MATHEMATICA
Table[2^(n-2) (2^n-2), {n, Prime[Range[20]]}] (* Harvey P. Dale, Aug 19 2014 *)
CROSSREFS
Cf. A020522.
Sequence in context: A296462 A125804 A119700 * A257665 A132877 A007685
KEYWORD
nonn
AUTHOR
EXTENSIONS
Corrected and extended by D. S. McNeil, Mar 21 2009
STATUS
approved