A229058 Primes p where the digital sum of p^2 is equal to 25.
67, 113, 157, 193, 257, 283, 311, 337, 373, 409, 419, 463, 509, 599, 643, 653, 661, 743, 761, 769, 797, 1013, 1031, 1039, 1103, 1129, 1193, 1237, 1301, 1381, 1399, 1427, 1471, 1481, 1553, 1571, 1579, 1597, 1733, 1759, 1823, 1831, 1877, 2029, 2039, 2111, 2129
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[p: p in PrimesUpTo(2600) | &+Intseq(p^2) eq 25];
-
Mathematica
Select[Prime[Range[400]], Total[IntegerDigits[#^2]] == 25 &]
Comments