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

A113609
Number of prime powers q<=n such that also q+2 is a prime power.
0
1, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16
OFFSET
1,2
COMMENTS
a(n) > A071538(n);
(25,27) is the smallest pair of prime powers (q,q+2) such that both q and q+2 are not primes, conjecture: there are more (but not < 10^6).
EXAMPLE
a(10) = Card{(p^0,3), (2,2^2), (3,5), (5,7), (7,3^2), (3^2,11)} = 6.
PROG
(PARI) ispp(n) = (n==1) || isprimepower(n);
a(n) = sum(k=1, n, ispp(k) && ispp(k+2)); \\ Michel Marcus, Jun 24 2019
CROSSREFS
Sequence in context: A024745 A322921 A030581 * A206916 A336112 A067086
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jan 14 2006
STATUS
approved