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.

A050239 Consecutive square palindromic primes; palindromic primes of the form x^2 + (x+1)^2, where x values are given by A050236.

Original entry on oeis.org

5, 181, 313, 3187813
Offset: 1

Views

Author

Keywords

Comments

No other terms < 10^20. - Patrick De Geest, Aug 15 1999

Crossrefs

Cf. A050236.
Subsequence of A002385.

Programs

  • Mathematica
    Select[Total/@Partition[Range[1300]^2,2,1],PalindromeQ[#]&&PrimeQ[#]&] (* Harvey P. Dale, Aug 19 2022 *)