cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A226802 Primes p where the digital sum of p^2 is equal to 10.

Original entry on oeis.org

19, 71, 179, 251, 449, 20249, 24499, 100549
Offset: 1

Views

Author

Vincenzo Librandi, Jun 24 2013

Keywords

Comments

The next term is > 24154957 (if it exists). - R. J. Mathar, Jul 05 2013
No more terms below 10^12. - Hiroaki Yamanouchi, Sep 23 2014.
No additional terms < 10^15. - Chai Wah Wu, Nov 15 2015
No other terms below 10^50. The sequence is likely finite and complete. - Max Alekseyev, Jun 13 2025

Examples

			19 is in the sequence because 19^2=361 and 3+6+1=10.
71 is in the sequence because 71^2=5041 and 5+0+4+1=10.
		

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(5*10^6) | &+Intseq(p^2) eq 10];
  • Maple
    select(p -> isprime(p) and convert(convert(p^2,base,10),`+`)=10, [seq(2*k+1,k=1..100000)]); # Robert Israel, Sep 23 2014
  • Mathematica
    Select[Prime[Range[70000]], Total[IntegerDigits[#^2]]== 10&]