OFFSET
1,3
COMMENTS
Conjecture: a(n) is less than or equal to n for all n.
EXAMPLE
Reverse(12) = 21 and the least natural number k such that 21 k + 1 is prime is k = 2; so a(12) = 2.
MATHEMATICA
f[n_] := Module[{i}, i = 0; While[ ! PrimeQ[i*FromDigits[Reverse[IntegerDigits[n]]]+ 1], i++ ]; i]; Table[f[i], {i, 1, 150}]
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Joseph L. Pe, Jul 16 2002
STATUS
approved