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

A257212
Least d>0 such that floor(n/d) - floor(n/(d+1)) <= 1.
2
1, 1, 1, 2, 2, 2, 2, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 3, 4, 4, 3, 4, 4, 4, 5, 4, 4, 4, 5, 5, 4, 4, 5, 5, 5, 4, 5, 5, 5, 5, 6, 6, 5, 5, 5, 6, 6, 6, 5, 5, 6, 6, 6, 6, 5, 7, 6, 6, 6, 6, 7, 7, 7, 6, 6, 6, 7, 7, 7, 7, 6, 6, 7, 7, 7, 7, 7, 6, 8, 8, 7, 7, 7, 7, 8, 8, 8
OFFSET
0,4
COMMENTS
An efficient formula for this sequence could be useful for faster computation of A024916.
LINKS
FORMULA
a(n) <= ceiling(sqrt(n)) <= A257213(n) for all n>0.
MATHEMATICA
f[n_] := Block[{d, k}, Reap@ For[k = 0, k <= n, k++, d = 1; While[Floor[k/d] - Floor[k/(d + 1)] > 1, d++]; Sow[d]] // Flatten // Rest]; f@ 86 (* Michael De Vlieger, Apr 18 2015 *)
ld[n_]:=Module[{d=1}, While[Floor[n/d]-Floor[n/(d+1)]>1, d++]; d]; Array[ ld, 90, 0] (* Harvey P. Dale, Oct 18 2015 *)
PROG
(PARI) a(n)=for(d=1, n+1, 1>=n\d-n\(d+1)&&return(d))
(Haskell)
a257212 n = head [d | d <- [1..], div n d - div n (d+1) <= 1]
-- Reinhard Zumkeller, Apr 19 2015
CROSSREFS
Sequence in context: A227196 A189172 A286888 * A001031 A336543 A035250
KEYWORD
nonn
AUTHOR
M. F. Hasler, Apr 18 2015
STATUS
approved