login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A058199 Where d(m) (number of divisors, A000005) falls by at least n. 4
4, 6, 12, 12, 24, 30, 36, 60, 60, 60, 120, 120, 120, 180, 180, 180, 240, 240, 360, 360, 360, 420, 720, 720, 720, 720, 840, 840, 840, 1260, 1260, 1260, 1680, 1680, 1680, 1680, 1680, 2160, 2520, 2520, 2520, 2520, 2520, 2520, 2520, 2520, 5040, 5040, 5040 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
In the first 500 entries, only 3 entries (1, 2, and 25200) of A002182 are missed. - Bill McEachen, Nov 05 2020
a(n) exists for all n (Turán, 1954). - Amiram Eldar, Apr 13 2024
REFERENCES
József Sándor, Dragoslav S. Mitrinovic, and Borislav Crstici, Handbook of Number Theory I, Springer Science & Business Media, 2005, Chapter II, p. 39, section II.1.3.a.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..2014 (terms 1..500 from T. D. Noe)
Pál Turán, Problem 71, Matematikai Lapok, Vol. 5 (1954), p. 48, entire volume; Solution to Problem 71, by Lajos Takács, ibid., Vol. 56, (1956), p. 154, entire volume.
FORMULA
A051950(a(n) + 1) <= - n. - Reinhard Zumkeller, Feb 04 2013
EXAMPLE
d(12) = 6, d(13) = 2 gives first drop of >= 3, so a(3) = a(4) = 12.
MATHEMATICA
max = 10^4; dd = Differences[Table[DivisorSigma[0, m], {m, 1, max}]]; a[n_] := Position[dd, d_ /; d <= -n, 1, 1][[1, 1]]; Table[a[n], {n, 1, -Min[dd] }] (* Jean-François Alcover, Nov 23 2015 *)
PROG
(Haskell)
import Data.List (findIndex)
import Data.Maybe (fromJust)
a058199 n = fromJust $ findIndex (n <=) $ map negate a051950_list
-- Reinhard Zumkeller, Feb 04 2013
CROSSREFS
Sequence in context: A143356 A058270 A332934 * A289535 A310592 A310593
KEYWORD
nonn,nice,easy
AUTHOR
N. J. A. Sloane, Nov 28 2000
EXTENSIONS
More terms from James A. Sellers, Nov 29 2000
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 13 00:23 EDT 2024. Contains 374259 sequences. (Running on oeis4.)