cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A102132 Iccanobirt prime indices (2 of 15): Indices of prime numbers in A102112.

This page as a plain text file.
%I A102132 #13 Apr 10 2020 15:46:36
%S A102132 4,6,7,11,38,45,176,1148,3097,7601,9258,47435
%N A102132 Iccanobirt prime indices (2 of 15): Indices of prime numbers in A102112.
%C A102132 No more terms through 5000.
%C A102132 a(13) > 50000. - _Robert Price_, Nov 07 2018
%F A102132 A102112(a(n)) = A102152(n).
%t A102132 a[n_] := a[n] = a[n - 1] + IntegerReverse[a[n - 2]] + a[n - 3];
%t A102132 a[0] = 0; a[1] = 0; a[2] = 1;
%t A102132 Select[Range[0, 5000], PrimeQ[a[#]] &] (* _Robert Price_, Apr 10 2020 *)
%Y A102132 Cf. A000040, A102112, A102131-A102145.
%K A102132 nonn,more,base
%O A102132 1,1
%A A102132 _Jonathan Vos Post_ and _Ray Chandler_, Dec 31 2004
%E A102132 a(10)-a(12) from _Robert Price_, Nov 07 2018