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

A110295
a(n) = 2^(n-1) * prime(n).
7
2, 6, 20, 56, 176, 416, 1088, 2432, 5888, 14848, 31744, 75776, 167936, 352256, 770048, 1736704, 3866624, 7995392, 17563648, 37224448, 76546048, 165675008, 348127232, 746586112, 1627389952, 3388997632, 6912212992, 14361296896
OFFSET
1,1
REFERENCES
Eric Angelini, "Array with primes." Pers. comm. on the SeqFan mailing list, Sep. 7 2005.
LINKS
FORMULA
a(n) = 2*A239885(n). - G. C. Greubel, Jan 04 2023
MATHEMATICA
Table[2^(n-1)*Prime[n], {n, 30}]
PROG
(Magma) [2^(n-1)*NthPrime(n): n in [1..50]]; // G. C. Greubel, Jan 04 2023
(SageMath) [2^(n-1)*nth_prime(n) for n in range(1, 50)] # G. C. Greubel, Jan 04 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Ryan Propper, Sep 07 2005
STATUS
approved