OFFSET
1,2
COMMENTS
323 is the first composite entry. Conjecture: sequence is infinite.
LINKS
R. J. Mathar and Giovanni Resta, Table of n, a(n) for n = 1..10000 (first 966 terms from R. J. Mathar)
MAPLE
isA002113 := proc(n)
if digrev(n) = n then
true;
else
false;
end if;
end proc:
A083137 := proc(n)
option remember;
if n =1 then
1;
else
for p from procname(n-1)+1 do
if isA002113(p) then
rpr := true;
for i from 1 to n-1 do
if igcd(procname(i), p) > 1 then
rpr := false;
break;
end if;
end do:
if rpr then
return p ;
end if;
end if;
end do:
end if;
end proc: # R. J. Mathar, Aug 23 2014
MATHEMATICA
a[1] = 1; a[n_] := a[n] = For[k = a[n-1]+1, True, k++, If[PalindromeQ[k] && AllTrue[Array[a, n-1], CoprimeQ[#, k]&], Return[k]]]; Array[a, 50] (* Jean-François Alcover, Jan 17 2018 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), Apr 24 2003
EXTENSIONS
Corrected and extended by Reinhard Zumkeller, May 05 2003
STATUS
approved