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.

A106784 Primes with digit sum = 56.

Original entry on oeis.org

2999999, 3998999, 4799999, 4979999, 4998989, 4999889, 5789999, 5888999, 5898989, 5899979, 5899997, 5979899, 5988989, 5989889, 5998799, 5999699, 6689999, 6779999, 6799799, 6799889, 6799979, 6888989, 6889997, 6896999
Offset: 1

Views

Author

Zak Seidov, May 16 2005

Keywords

Crossrefs

Cf. similar sequences listed in A244918.

Programs

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