OFFSET
1,2
COMMENTS
Conjecture: a(3n) = 0. No other term is zero.
a(3n)=0: consider the sum of the digits modulo 3. For the same reason, if a(m) is divisible by 3 then a(m)=0. - Sam Alexander, Nov 15 2003
LINKS
XIAO Gang, Factoris - a program that factorizes huge integers, 1997-1999
EXAMPLE
a(2) = 2 as 229 is a prime. but 119 is not.
MATHEMATICA
s[b_]:=(v={}; l=Length[b]; Do[v=Join[v, IntegerDigits[b[[k]]]], {k, l}]; v); a[n_]:=If[Mod[n, 3]!= 0, (For[m = 1, ! PrimeQ[10*FromDigits[s[Table[m, {n}]]] +9], m++ ]; m), 0]; Table[a[n], {n, 90}] (Firoozbakht)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Sep 18 2003
EXTENSIONS
More terms from Sam Alexander, Nov 15 2003
More terms from Farideh Firoozbakht, Feb 04 2005
STATUS
approved