OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
a(8) = 228 as the eighth prime is 19. 228 = 19*12
MATHEMATICA
smnp[n_] :=Module[{k = 2}, While[AnyTrue[IntegerDigits[k*n], OddQ], k = k + 2]; k*n]; Join[{2}, Table[smnp[p], {p, Prime[Range[2, 100]]}]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Feb 02 2019 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Amarnath Murthy, Jun 18 2001
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), Jun 20 2001
STATUS
approved