OFFSET
1,1
COMMENTS
Each term is prime.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
MAPLE
S:= NULL: x:= 1: count:= 1:
for y from x+2 by 2 do
if isprime(2*y-x) then
S:= S, 2*y-x; x:= y; count:= count+1;
if count = 101 then break fi;
fi
od:
S; # Robert Israel, Mar 22 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Aug 10 2009
EXTENSIONS
More terms from R. J. Mathar, Oct 24 2009
STATUS
approved