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.

A225677 Primes of the form p - (product of digits of p), where p is a prime.

Original entry on oeis.org

11, 17, 19, 31, 37, 59, 101, 103, 107, 109, 113, 173, 179, 193, 199, 211, 227, 233, 239, 241, 257, 263, 307, 311, 317, 331, 383, 389, 397, 401, 409, 419, 439, 479, 499, 503, 509, 521, 547, 563, 571, 577, 601, 607, 613, 617, 659, 691, 701, 709, 719, 733, 809
Offset: 1

Views

Author

Jayanta Basu, May 12 2013

Keywords

Comments

Primes generated by A225319.

Examples

			17 is in the list since 17 = 23 - (2*3).
		

Crossrefs

Programs

  • Mathematica
    Union[Select[Table[p=Prime[n]; p-Times@@IntegerDigits[p],{n,150}],PrimeQ]]