VOOZH
about
URL: https://oeis.org/A361300
⇱ A361300 - OEIS
login
A361300
Numbers of the form m^2 + p^2 for p prime and m > 0.
3
5, 8, 10, 13, 18, 20, 25, 26, 29, 34, 40, 41, 45, 50, 53, 58, 61, 65, 68, 73, 74, 85, 89, 90, 98, 104, 106, 109, 113, 122, 125, 130, 137, 146, 148, 149, 153, 157, 169, 170, 173, 178, 185, 193, 194, 200, 202, 205, 218, 221, 229, 233, 234, 242
(
list
;
graph
;
refs
;
listen
;
history
;
text
;
internal format
)
OFFSET
1,1
COMMENTS
Rieger proves that there are >> x/log x terms of this sequence up to x, and together with the trivial upper bound << x/log x this shows that a(n) ≍ n log n. (Rieger does not prove that a(n) ~ n log n, the constant factor may be larger.)
LINKS
Charles R Greathouse IV,
Table of n, a(n) for n = 1..10000
G. J. Rieger,
Über die Summe aus einem Quadrat und einem Primzahlquadrat
, J. Reine Angew. Math. 231 (1968), 89-100.
PROG
(PARI) list(lim)=my(v=List()); forprime(p=2, sqrtint(lim\=1), my(p2=p^2); for(m=1, sqrtint(lim-p2), listput(v, p2+m^2))); Set(v)
CROSSREFS
Subsequence of
A000404
;
A185086
is a subsequence.
Sequence in context:
A022160
A022158
A032717
*
A256360
A205676
A352676
Adjacent sequences:
A361297
A361298
A361299
*
A361301
A361302
A361303
KEYWORD
nonn
,
easy
AUTHOR
Charles R Greathouse IV
, Mar 08 2023
STATUS
approved