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!)
A080372 a(n) is the smallest x such that the quotient d(x)/d(x+1) equals n, where d = A000005. 8
2, 6, 12, 30, 112, 60, 192, 210, 180, 240, 13312, 420, 12288, 2112, 1008, 1320, 2162688, 1800, 786432, 2160, 4800, 15360, 62914560, 2520, 6480, 61440, 6300, 8640, 3489660928, 12240, 3221225472, 7560, 64512, 1376256, 58320, 12600, 206158430208, 8650752, 184320, 15120 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(41) > 10^12. - Donovan Johnson, Sep 02 2013
LINKS
Donovan Johnson, All 433 terms <= 10^12
FORMULA
a(n)=Min{x : d[x]/d[x+1]=n}
EXAMPLE
n = 17: a(17) = 2162688 = m, d(m) = 68, d(m+1) = 4, quotient = 17.
MATHEMATICA
t = Table[ 0, {50}]; Do[ s = DivisorSigma[0, n] / DivisorSigma[0, n+1]; If[ s < 51 && t[[s]] == 0, t[[s]] = n], {n, 1, 45000000}]; t
PROG
(PARI) {a(n) = my(k=1); while(numdiv(k)!=n*numdiv(k+1), k++); k} \\ Seiichi Manyama, Jan 17 2021
CROSSREFS
Sequence in context: A022916 A073949 A367336 * A335287 A322804 A163087
KEYWORD
nonn
AUTHOR
Labos Elemer, Feb 24 2003
EXTENSIONS
More terms from Robert G. Wilson v, Feb 27 2003
a(23), a(29) and a(31) from Donovan Johnson, Jun 02 2010
a(37), a(39)-a(40) from Donovan Johnson, Sep 02 2013
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 May 4 20:57 EDT 2024. Contains 372257 sequences. (Running on oeis4.)