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”).

A102145
Iccanobirt prime indices (15 of 15): Indices of prime numbers in A102125.
15
4, 6, 7, 11, 30, 31, 50, 64, 77, 146, 163, 185, 210, 354, 367, 402, 3137, 3228, 3639, 11756, 22054, 23126
OFFSET
1,1
COMMENTS
No more terms through 5000.
a(23) > 50000. - Robert Price, Nov 11 2018
FORMULA
A102125(a(n)) = A102165(n).
MATHEMATICA
a[n_] := a[n] =
IntegerReverse[IntegerReverse[a[n - 1]] + IntegerReverse[a[n - 2]] +
IntegerReverse[a[n - 3]]];
a[0] = 0; a[1] = 0; a[2] = 1;
Select[Range[0, 5000], PrimeQ[a[#]] &] (* Robert Price, Apr 10 2020 *)
CROSSREFS
KEYWORD
nonn,more,base
AUTHOR
EXTENSIONS
a(20)-a(22) from Robert Price, Nov 11 2018
STATUS
approved