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.

A106756 Primes with digit sum = 14.

Original entry on oeis.org

59, 149, 167, 239, 257, 293, 347, 383, 419, 491, 509, 563, 617, 653, 743, 761, 941, 1049, 1193, 1229, 1283, 1319, 1373, 1409, 1427, 1481, 1553, 1571, 1607, 1733, 1823, 1913, 1931, 2039, 2129, 2237, 2273, 2309, 2381, 2417, 2543, 2633, 2741, 2903, 3083
Offset: 1

Views

Author

Zak Seidov, May 16 2005

Keywords

Comments

Or prime numbers in A114527. - Zak Seidov, May 21 2006

Crossrefs

Cf. A000040 (primes), A007953 (sum of digits), A235225 (digit sum = 14).
Cf. A062339 (same for digit sum s = 4), A106755 (s = 13), A106757 (s = 16), and others listed in A244918 (s = 68).

Programs

  • Magma
    [p: p in PrimesUpTo(4000) | &+Intseq(p) eq 14]; // Vincenzo Librandi, Jul 08 2014
    
  • Mathematica
    Select[Prime[Range[10000]], Total[IntegerDigits[#]]==14 &] (* Vincenzo Librandi, Jul 08 2014 *)
  • PARI
    select( {is_A106756(n)= sumdigits(n)==14 && isprime(n)}, primes([1, 3333])) \\ M. F. Hasler, Mar 09 2022

Formula

Intersection of A000040 (primes) and A235225 (digit sum = 14); also equals { p in A000040 | A007953(p) = 14 }. - M. F. Hasler, Mar 09 2022