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 #14 Sep 30 2024 17:52:56
%S 1,2,4,12,82,231,380,2990,20954,40953,42852,182492,859647,8039644,
%T 11990003,78269808,3263358159,6941215856
%N Where records occur in A144294.
%o (PARI) f(n)=my(k=n+(sqrtint(4*n)+1)\2); forprime(p=2, , if(!issquare(Mod(k, p)), return(p))); \\ A144294
%o lista(nn) = {my(v=vector(nn, n, f(n))); my(m=0, nm=0); for (n=1, nn, nm = v[n]; if (nm > m, print1(n, ", "); m = nm;););} \\ _Michel Marcus_, Jun 25 2021
%Y Cf. A144294, A144296.
%K nonn,more
%O 1,2
%A _N. J. A. Sloane_, Dec 03 2008
%E a(9)-a(12) from _R. J. Mathar_, Dec 04 2008
%E a(13)-a(15) from _Michel Marcus_, Jun 25 2021
%E a(16)-a(18) from _Michael S. Branicky_, Sep 30 2024