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.

Showing 1-1 of 1 results.

A066027 Numbers k such that the sum of digits of k minus the product of digits of k is prime.

Original entry on oeis.org

20, 30, 50, 70, 101, 102, 104, 106, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 131, 140, 141, 151, 160, 161, 171, 181, 191, 200, 201, 203, 205, 209, 210, 211, 230, 250, 290, 300, 302, 304, 308, 311, 320, 340, 380, 401, 403, 407, 409, 410
Offset: 1

Views

Author

Enoch Haga, Dec 11 2001

Keywords

Examples

			a(11)=112 because 1 + 1 + 2 = 4, 2*1*1 = 2, and 4 - 2 = 2, which is prime. [corrected by _Harry J. Smith_, Nov 07 2009]
		

Crossrefs

Programs

  • PARI
    isok(k) = {my(d=digits(k)); isprime(vecsum(d) - vecprod(d))} \\ Harry J. Smith, Nov 07 2009
Showing 1-1 of 1 results.