OFFSET
1,1
COMMENTS
a(7) = 131 is the first prime in this sequence.
A033548 (Honaker primes) is a subsequence of this sequence.
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000
EXAMPLE
153 is a term because the number of primes up to 153 is 36 and 1 + 5 + 3 = 9 = 3 + 6.
435 is a term because number of primes up to 435 is 84 and 4 + 3 + 5 = 12 = 8 + 4.
MATHEMATICA
fHQ[n_] := Plus @@ IntegerDigits@n == Plus @@ IntegerDigits@PrimePi@n; Select[Range[3000], fHQ[#] &]
PROG
(PARI) for(n=1, 5000, if(sumdigits(n)==vecsum(digits(primepi(n))), print1(n, ", " )));
(PARI) upto(n) = { my(q = 2, ulim = nextprime(n), pi = 0, res = List()); forprime(p = 3, ulim, pi++; for(i = q, p-1, if(sumdigits(i) == sumdigits(pi), listput(res, i) ) ); q = p ); res } \\ David A. Corneth, May 26 2021
(Python)
from sympy import primepi
def sd(n): return sum(map(int, str(n)))
def ok(n): return sd(n) == sd(primepi(n))
print(list(filter(ok, range(1, 1081)))) # Michael S. Branicky, May 28 2021
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
K. D. Bajpai, Apr 06 2021
STATUS
approved