A355637 The fixed points of A355636.
1, 3, 6, 55, 58, 189, 372, 1133, 1135, 1374, 1874, 3958, 3959, 3963, 8724, 26492, 29115, 29152, 37628, 39028, 40340, 42183, 42676, 42678, 43731, 44925
Offset: 1
Crossrefs
Cf. A355636.
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
a(5) = 6 as a(3) + a(4) = 3 + 5 = 8 which has four divisors, and 6 is the smallest unused number that has four divisors.
from sympy import divisor_count from itertools import count, islice def agen(): anm1, an, mink, seen = 1, 2, 3, {1, 2} yield 1 for n in count(2): yield an k, target = mink, divisor_count(anm1+an) while k in seen or divisor_count(k) != target: k += 1 while mink in seen: mink += 1 anm1, an = an, k seen.add(an) print(list(islice(agen(), 76))) # Michael S. Branicky, Jul 26 2022
a(7) = 6 as a(5) + a(6) = 4 + 6 = 10 which has four divisors, and 6 is the smallest positive number that has four divisors.
Comments