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.

A227525 Squares which can be represented as sum of a prime and its reverse in at least one way.

Original entry on oeis.org

4, 121, 625, 94249, 698896, 1517824, 5313025, 6325225, 6895876, 6948496, 7706176, 15665764, 63600625, 95199049, 170198116, 449948944, 522808225, 562069264, 1101576100, 1183979281, 1254505561, 1271564281, 1615718416, 4045214404, 9504885049, 10989328900
Offset: 1

Views

Author

Shyam Sunder Gupta, Jul 14 2013

Keywords

Examples

			121=29+92
		

Crossrefs

Cf. A067030.

Programs

  • Mathematica
    SquareQ[n_Integer?Positive] := IntegerQ[Sqrt[n]] ; Union[Select[ Table[ Prime[x] + FromDigits[ Reverse[ IntegerDigits[ Prime[x]]]], {x,  5761455}], SquareQ]]
    Select[Union[#+IntegerReverse[#]&/@Prime[Range[10^6]]],IntegerQ[Sqrt[#]]&] (* The program generates the first 12 terms of the sequence. *) (* Harvey P. Dale, Sep 14 2022 *)

Extensions

a(20)-a(26) from Giovanni Resta, Jul 18 2013