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.

A106783 Primes with digit sum = 55.

Original entry on oeis.org

2998999, 3899989, 3979999, 3989989, 3998899, 4789999, 4798999, 4888999, 4899997, 4987999, 4989979, 4989997, 4997899, 4997989, 4998979, 4998997, 4999879, 5599999, 5699899, 5699989, 5779999, 5789899, 5799799, 5869999
Offset: 1

Views

Author

Zak Seidov, May 16 2005

Keywords

Crossrefs

Cf. similar sequences listed in A244918.

Programs

  • Magma
    [p: p in PrimesUpTo(6000000) | &+Intseq(p) eq 55]; // Vincenzo Librandi, Jul 09 2014
  • Mathematica
    Select[Prime[Range[410000]],Total[IntegerDigits[#]]==55&] (* Harvey P. Dale, Jun 22 2013 *)