A102136 Iccanobirt prime indices (6 of 15): Indices of prime numbers in A102116.
4, 6, 7, 12, 18, 20, 121, 2280, 2521, 8123, 9072, 12411, 27520
Offset: 1
Programs
-
Mathematica
a[n_] := a[n] = IntegerReverse[a[n - 1]] + IntegerReverse[a[n - 2]] + a[n - 3]; a[0] = 0; a[1] = 0; a[2] = 1; Select[Range[0, 5000], PrimeQ[a[#]] &] (* Robert Price, Apr 10 2020 *)
Extensions
a(10)-a(13) from Robert Price, Nov 08 2018
Comments