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!)
A308751 a(n) = (2 + Sum_{k = 1..n-1} A095258(k)) / A095258(n). 1
2, 1, 3, 2, 2, 2, 1, 3, 9, 16, 5, 3, 2, 17, 9, 24, 10, 25, 22, 13, 46, 7, 4, 2, 47, 45, 23, 16, 16, 3, 2, 17, 51, 72, 26, 9, 73, 111, 160, 49, 46, 5, 47, 72, 20, 146, 63, 112, 28, 113, 174, 95, 80, 63, 54, 160, 46, 11, 47, 72, 14, 12, 73, 130, 37, 131, 152, 51 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Are there infinitely many 1's in this sequence?
LINKS
EXAMPLE
a(3) = (2 + A095258(1) + A095258(2)) / A095258(3) = (2 + 1 + 3) / 2 = 3.
PROG
(PARI) See Links section.
(Python)
from itertools import islice
from sympy import divisors
def A308751_gen(): # generator of terms
bset, s = {1}, 3
yield 2
while True:
for d in divisors(s):
if d not in bset:
yield s//d
bset.add(d)
s += d
break
A308751_list = list(islice(A308751_gen(), 30)) # Chai Wah Wu, Jan 25 2022
CROSSREFS
Cf. A095258.
Sequence in context: A286364 A084216 A347240 * A057514 A273568 A140720
KEYWORD
nonn,look
AUTHOR
Rémy Sigrist, Jun 22 2019
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 8 03:50 EDT 2024. Contains 372317 sequences. (Running on oeis4.)