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

A104269
Prime numbers p such that primepi(p) + p is a square.
1
11, 37, 443, 571, 1049, 1307, 1451, 1523, 2837, 3593, 5233, 8539, 9257, 9439, 10391, 10987, 17579, 21881, 23321, 23909, 25117, 30557, 30893, 31231, 42239, 47123, 64811, 65789, 83089, 91631, 92219, 95747, 97549, 99971, 101197, 101807, 110603, 114487, 120431
OFFSET
1,1
COMMENTS
A064371(p) + A000040(A064371(p)) = A086968(p)^2.
p^2 is prime + its index A086968; p + p-th prime is a square A064371.
Equals the prime terms of A073945. - Bill McEachen, Oct 26 2021
FORMULA
a(n) = A086968(n)^2 - pi(a(n)).
EXAMPLE
37 is a term because 37 is 12th prime and 37 + 12 = 49 = 7^2.
MAPLE
q:= n-> isprime(n) and issqr(n+numtheory[pi](n)):
select(q, [$0..150000])[]; # Alois P. Heinz, Oct 27 2021
MATHEMATICA
Select[Prime@Range[10^4], IntegerQ@Sqrt[PrimePi@#+#]&] (* Giorgos Kalogeropoulos, Oct 26 2021 *)
PROG
(PARI) isok(n) = isprime(n) && issquare(n + primepi(n)); \\ Michel Marcus, Oct 05 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Feb 26 2005
EXTENSIONS
Definition corrected by Michel Marcus, Oct 05 2013
STATUS
approved