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.

A246622 Primes of the form n + product of nonzero digits of n, in order of their occurrence.

Original entry on oeis.org

2, 11, 23, 29, 41, 47, 67, 109, 89, 107, 101, 167, 181, 223, 199, 227, 251, 293, 283, 349, 331, 433, 347, 461, 313, 383, 353, 379, 431, 457, 379, 443, 521, 547, 457, 491, 593, 499, 557, 673, 601, 823, 619, 653, 839, 607, 617, 631, 659, 673, 659, 743, 929, 919
Offset: 1

Views

Author

K. D. Bajpai, Aug 31 2014

Keywords

Comments

Primes in A063114.

Examples

			a(2) = 11 which is prime. Also, 11 = 10 + 1, which is n + product of nonzero digit of n.
a(9) = 89 which is prime. Also, 89 = 81 + (8*1), which is n + product of nonzero digits of n.
a(10) = 107 which is prime. Also, 107 = 83 + (8*3), which is n + product of nonzero digits of n.
		

Crossrefs

Programs

  • Mathematica
    Select[Table[n + Times @@ DeleteCases[IntegerDigits[n], 0], {n, 1000}], PrimeQ]