OFFSET
1,1
COMMENTS
By definition this sequence is strictly increasing. Heuristically a(n) is around 2n log n/log log n. - Charles R Greathouse IV, May 01 2015
LINKS
Zak Seidov, Table of n, a(n) for n = 1..1000
PROG
(PARI) issemi(n)=bigomega(n)==2
t=0; v=List(); last=4; while(1, n=last+t; while(!issemi(n++), ); listput(v, t=n-last); if(v==100, return(Set(v))); last=n) \\ Charles R Greathouse IV, May 01 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Apr 30 2015
STATUS
approved