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

A299073
Indices of records in A243145.
2
1, 3, 5, 19, 21, 41, 59, 173, 241, 269, 326, 341, 431, 491, 4406, 6641, 10946, 45386, 54206, 81611, 94706, 362351, 486281, 1099766, 1197026, 1220126, 1439756, 1597361, 1685276, 2000246, 2405051, 6550946, 9996731, 15410111, 34120511, 39283856, 41437226, 47108981
OFFSET
1,2
LINKS
MAPLE
f:= proc(n) local k;
for k from (n mod 2)+1 by 2 do
if isprime(n+k) and isprime(n+k^2) then return k fi
od
end proc:
f(1):= 1:
vmax:= 0: recinds:= NULL:
for n from 1 to 10^7 do
v:= f(n);
if v > vmax then
vmax:= v; recinds:= recinds, n;
fi
od:
recinds;
CROSSREFS
Sequence in context: A242961 A025046 A305700 * A329797 A180931 A118484
KEYWORD
nonn
AUTHOR
Robert Israel, Feb 02 2018
EXTENSIONS
a(34)-a(38) from Chai Wah Wu, Sep 10 2019
STATUS
approved