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”).
%I #40 Jul 25 2024 05:49:49
%S 4,5,7,9,25,29,49,79,1613,15205
%N Indices of primes in A001590.
%C a(11) > 2*10^5.
%F A001590(a(n)) = A231574(n). - _Arthur O'Dwyer_, 24 Jul 2024
%o (PARI) v=[1,0,1]; for(n=4,1e4, if(ispseudoprime(t=v[1]+v[2]+v[3]), print1(n", ")); v=[v[2],v[3],t]) \\ _Charles R Greathouse IV_, Nov 18 2013
%Y Cf. A001590, A231574, A000213, A056816, A157611.
%K nonn,more
%O 1,1
%A _Robert Price_, Nov 18 2013
%E Name clarified by _Arthur O'Dwyer_, Jul 24 2024