OFFSET
1,1
LINKS
Paolo P. Lava, Table of n, a(n) for n = 1..350
Carlos Rivera, Puzzle 935. pi+SOD(pi)=p(i+n), The Prime Puzzles and Problems Connection.
EXAMPLE
a(1) = 23 because 23 + 2*3 = 29 that is the first prime after 23.
a(2) = 1163 because 1163 + 1*1*6*3 = 1181 that is the second prime after 1163.
MAPLE
P:=proc(q) local k, n, p; for n from 1 to q do
for k from 1 to q do p:=ithprime(k);
if p+convert(convert(p, base, 10), `*`)=ithprime(k+n) then lprint(n, p);
break; fi; od; od; end: P(10^9);
MATHEMATICA
Array[Block[{p = 2}, While[p + Times @@ IntegerDigits@ p != NextPrime[p, #], p = NextPrime@ p]; p] &, 47] (* Michael De Vlieger, Dec 17 2018 *)
CROSSREFS
KEYWORD
base,nonn,easy
AUTHOR
Paolo P. Lava, Dec 17 2018
STATUS
approved