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.

A070831 Palindromic primes with digit sum = 11.

Original entry on oeis.org

191, 353, 13331, 1123211, 1221221, 1303031, 1311131, 3103013, 110232011, 111050111, 112030211, 112111211, 121111121, 130030031, 301111103, 10000900001, 10002520001, 10013131001, 10111311101, 10301110301
Offset: 1

Views

Author

Robert G. Wilson v, May 15 2002

Keywords

Comments

Conjecture: The sequence is unbounded.

Crossrefs

Programs

  • Mathematica
    Do[p = Join[ IntegerDigits[n], Reverse[ Drop[ IntegerDigits[n], -1]]]; q = Plus @@ p; If[ PrimeQ[ FromDigits[p]] && q == 11, Print[ FromDigits[p]]], {n, 1, 10^6}]