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!)
A080371 a(n) is the smallest x such that the quotient d(x+1)/d(x) equals n, where d = A000005. 7
2, 1, 11, 23, 47, 59, 191, 167, 179, 239, 5119, 359, 20479, 2111, 719, 839, 983039, 1259, 786431, 3023, 2879, 15359, 62914559, 3359, 22031, 266239, 6299, 6719, 13690208255, 5039, 22548578303, 7559, 156671, 6881279, 25919, 10079, 1168231104511, 5505023, 479231, 21839 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(37) > 10^12. - Donovan Johnson, Sep 02 2013
Conjecture: a(p) = 2^(p-1) * k - 1 for some k > 0 and prime p. - David A. Corneth, Jan 26 2021
LINKS
Donovan Johnson, All 435 terms <= 10^12
FORMULA
a(n) = Min_{x : d[x+1]/d[x] = n}.
a(n) = A086551(n) - 1. - Hugo Pfoertner, Jan 26 2021
EXAMPLE
n = 49: a(49) = 233279 = m, d(m+1) = 98, d(m) = 2, quotient = 49.
MATHEMATICA
t = Table[ 0, {50}]; Do[ s = DivisorSigma[0, n+1] / DivisorSigma[0, n]; If[ s < 51 && t[[s]] == 0, t[[s]] = n], {n, 1, 10^8}]; t
PROG
(PARI) {a(n) = my(k=1); while(numdiv(k+1)!=n*numdiv(k), k++); k} \\ Seiichi Manyama, Jan 17 2021
CROSSREFS
Sequence in context: A305877 A111724 A184299 * A151337 A013019 A012904
KEYWORD
nonn
AUTHOR
Labos Elemer, Feb 24 2003
EXTENSIONS
More terms from Robert G. Wilson v, Feb 27 2003
a(29) and a(31) from Donovan Johnson, Dec 26 2012
More terms from David A. Corneth, Jan 27 2021
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)