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.

A106786 Primes with digit sum = 59.

Original entry on oeis.org

6999899, 6999989, 7799999, 7899989, 8789999, 8799899, 8879999, 8899799, 8899997, 8988989, 8998889, 8999699, 8999789, 8999897, 9797999, 9799997, 9869999, 9889799, 9889889, 9898799
Offset: 1

Views

Author

Zak Seidov, May 16 2005

Keywords

Crossrefs

Cf. similar sequences listed in A244918.

Programs

  • Magma
    [p: p in PrimesUpTo(10000000) | &+Intseq(p) eq 59]; // Vincenzo Librandi, Jul 09 2014
  • Mathematica
    Select[Prime[Range[1000000]], Total[IntegerDigits[#]]==59 &] (* Vincenzo Librandi, Jul 09 2014 *)