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.

A157676 Numbers n such that n + (product of digits of n) is prime.

Original entry on oeis.org

1, 21, 23, 27, 29, 61, 67, 81, 83, 101, 103, 107, 109, 161, 163, 169, 233, 239, 253, 259, 283, 289, 293, 299, 307, 329, 341, 343, 347, 349, 361, 401, 409, 431, 437, 439, 441, 443, 449, 471, 473, 477, 493, 499, 503, 509, 529, 563, 569, 601, 607, 611, 613, 617
Offset: 1

Views

Author

Kyle D. Balliet, Mar 04 2009

Keywords

Examples

			a(21) = 21 + (2)(1) = 23 (prime). a(67) = 67 + (6)(7) = 109 (prime). a(169) = 169 + (1)(6)(9) = 223 (prime).
		

Crossrefs

Programs

  • Mathematica
    fQ[n_] := PrimeQ[n + Times @@ IntegerDigits@n]; Select[ Range@1000, fQ@# &] (* Robert G. Wilson v, May 04 2009 *)
  • PARI
    dprod(n)=n=digits(n);prod(i=1,#n,n[i])
    is(n)=isprime(dprod(n)+n) \\ Charles R Greathouse IV, Dec 27 2013

Formula

a(n) ~ n log n. - Charles R Greathouse IV, Dec 27 2013

Extensions

More terms from Robert G. Wilson v, May 04 2009