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

A037167
a(n) = prime(n)*prime(n+1)-prime(n+1).
1
3, 10, 28, 66, 130, 204, 304, 414, 638, 868, 1110, 1476, 1720, 1974, 2438, 3068, 3538, 4020, 4686, 5110, 5688, 6474, 7298, 8536, 9696, 10300, 10914, 11554, 12204, 14224, 16506, 17810, 18904, 20562, 22348, 23550, 25428, 27054, 28718, 30788, 32218
OFFSET
1,1
COMMENTS
a(n) = A000040(n+1)*A006093(n). - Michel Marcus, Jun 30 2013
MATHEMATICA
Table[Prime[n]*Prime[n + 1] - Prime[n + 1], {n, 60}] (* Wesley Ivan Hurt, Dec 31 2023 *)
PROG
(PARI) a(n) = prime(n+1)*(prime(n) - 1) \\ Michel Marcus, Jun 30 2013
CROSSREFS
Sequence in context: A226863 A325793 A325800 * A267707 A221647 A062431
KEYWORD
nonn
AUTHOR
Armand Turpel armandt(AT)unforgettable.com
STATUS
approved