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.

A177948 Numbers n such that n^2 + reverse of n^2 is a prime.

Original entry on oeis.org

1, 10, 14, 25, 104, 116, 124, 136, 145, 149, 151, 157, 161, 167, 173, 184, 188, 190, 205, 224, 245, 251, 266, 268, 272, 280, 287, 289, 310, 1006, 1024, 1036, 1060, 1070, 1124, 1150, 1216, 1220, 1240, 1244, 1250, 1286, 1306, 1310, 1336, 1366, 1376, 1406, 1417
Offset: 1

Views

Author

Michel Lagneau, May 15 2010

Keywords

Examples

			116 is in the sequence, because 116^2 = 13456, and 13456 + 65431 = 78887 is a prime.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[2000], PrimeQ[(#)^2 + FromDigits[Reverse[IntegerDigits[(#)^2]]]] &]