login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A138790
a(n) = indices n for which A138793(n) is prime.
17
OFFSET
1,1
COMMENTS
Indices where number 1 occured in A138789.
There are no more primes for n<=5000.
a(3) > 20000. - Robert Price, Mar 24 2015
EXAMPLE
a(1) = 61 because the number 160695...654321 is prime.
MATHEMATICA
b = {}; a = {}; Do[w = RealDigits[n]; w = First[w]; Do[AppendTo[a, w[[k]]], {k, 1, Length[w]}]; p = FromDigits[Reverse[a]]; If[PrimeQ[p], Print[n]; AppendTo[b, p]], {n, 1, 2000}]; b (* Artur Jasinski, Mar 30 2008 *)
Select[Range[1, 1000], PrimeQ[lst = {}; Do[lst = Join[lst, IntegerDigits[n]], {n, 1, #}]; FromDigits[Reverse[lst]]] &] (* Robert Price, Mar 24 2015 *)
CROSSREFS
KEYWORD
nonn,bref,hard,more,base
AUTHOR
Artur Jasinski, Mar 30 2008, Mar 31 2008
STATUS
approved