[go: up one dir, main page]

login
A066027
Sum of digits of n minus product of digits of n is prime.
2
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,1
LINKS
EXAMPLE
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]
PROG
(PARI) ProdD(x)= { local(p=1); while (x>9 && p>0, p*=x%10; x\=10); return(p*x) } SumD(x)= { local(s=0); while (x>9, s+=x%10; x\=10); return(s + x) } { n=0; for (m=1, 10^9, if (isprime(SumD(m) - ProdD(m)), write("b066027.txt", n++, " ", m); if (n==1000, return)) ) } \\ Harry J. Smith, Nov 07 2009
CROSSREFS
Sequence in context: A120145 A104048 A078499 * A256227 A142342 A008444
KEYWORD
easy,nonn,base
AUTHOR
Enoch Haga, Dec 11 2001
STATUS
approved