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!)
A240911 Smallest number greater than a(n-1) divisible by smallest number that is not a divisor of a(n-1). 2
1, 2, 3, 4, 6, 8, 9, 10, 12, 15, 16, 18, 20, 21, 22, 24, 25, 26, 27, 28, 30, 32, 33, 34, 36, 40, 42, 44, 45, 46, 48, 50, 51, 52, 54, 56, 57, 58, 60, 63, 64, 66, 68, 69, 70, 72, 75, 76, 78, 80, 81, 82, 84, 85, 86, 87, 88, 90, 92, 93, 94, 96, 100 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Conjecture: Numbers that are not in this sequence below any finite limit will never outnumber numbers that are.
That is, a(n) < 2n for all n. This holds for n < 10^10. - Charles R Greathouse IV, Apr 14 2014
The expected value of the first differences of this sequence is Sum_{q>=2} (q(p-1)/(2*lcm(2,...,q)) as q = p^k ranges over the prime powers, or approximately 1.39389022808623327303..., so the conjecture is very likely to be true. - Charlie Neder, Apr 26 2019
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
a(5) cannot be 5 because smallest number that is not a divisor of 4 is 3 and 3 is not a divisor of 5.
PROG
(PARI) step(n)=for(k=2, n+1, if(n%k, return((n\k+1)*k)))
v=vector(100); v[1]=1; for(n=2, #v, v[n]=step(v[n-1])); v \\ Charles R Greathouse IV, Apr 14 2014
CROSSREFS
Sequence in context: A263079 A362077 A085451 * A064150 A259227 A196149
KEYWORD
nonn,easy
AUTHOR
J. Lowell, Apr 14 2014
EXTENSIONS
a(26)-a(63) from Charles R Greathouse IV, Apr 14 2014
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 23 02:23 EDT 2024. Contains 371906 sequences. (Running on oeis4.)