OFFSET
0,1
COMMENTS
From Hartmut F. W. Hoft, Feb 06 2017: (Start)
a(66)=86486400 has the largest index n with a(n) <= 100000000, but there are 12 values from a(38) to a(67) that are larger than 100000000.
Conjecture: a(n) = k where p(k) and p(k-1) are the first pair of Dyck paths for the symmetric representation of sigma(k) and sigma(k-1), as described in A237593, having a gap of exactly n units on the diagonal, i.e., it is the sequence of record gaps in sequence A240542; tested through 2000000 with a variant of function A279286. (End)
The first 37 terms are 13-smooth (see A080197). - David A. Corneth, Apr 07 2018
LINKS
David A. Corneth, Upper bounds on a(0)..a(376) and some more values
Christian Kassel and Christophe Reutenauer, The zeta function of the Hilbert scheme of n points on a two-dimensional torus, arXiv:1505.07229v3 [math.AG], 2015, see page 29 Remarks 6.8(b). [Note that a later version of this paper has a different title and different contents, and the number-theoretical part of the paper was moved to the publication which is next in this list.]
Christian Kassel and Christophe Reutenauer, Complete determination of the zeta function of the Hilbert scheme of n points on a two-dimensional torus, arXiv:1610.07793 [math.NT], 2016, see Remark 1.3.
EXAMPLE
MATHEMATICA
(* computation based on the function of Michael Somos in A067742 *)
a128605[pL_, b_] := Module[{posL=Map[0&, Range[pL]], k=1, mCur, count}, While[k<=b, mCur=DivisorSum[k, 1&, k/2 <= #^2 < 2k&]; If[posL[[mCur]]==0, posL[[mCur]]=k]; k++]; Prepend[posL, 3]]
a128605[70, 100000000] (* computes those a(0) .. a(66) <= 100000000 *)
(* Hartmut F. W. Hoft, Feb 06 2017 *)
PROG
(PARI) ct(m)=my(lower=if(m%2==0&&issquare(m/2), sqrtint(m/2), sqrtint(m\2)+1), upper=sqrtint(2*m)); sumdiv(m, d, lower<=d && d<=upper)
v=vector(10^3); need=1; for(m=1, 1e9, t=ct(m); if(t>=need && v[t]==0, v[t]=m; print("a("t") = "n); while(v[need], need++))) \\ Charles R Greathouse IV, Feb 06 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Mar 14 2007
EXTENSIONS
a(33)-a(37) from Hartmut F. W. Hoft, Feb 06 2017
STATUS
approved