A355648 The fixed points of A355647.
1, 2, 3, 52, 66, 322, 1034, 1065, 1431, 3266, 4790, 4887, 33604, 54784, 125888
Offset: 1
Crossrefs
Cf. A355647.
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(4) = 5 as a(2) + a(3) = 2 + 3 = 5 which has one prime divisor, and 5 is the smallest unused number that has one prime divisor. a(6) = 7 as a(4) + a(5) = 5 + 8 = 13 which has one prime divisor, and 7 is the smallest unused number that has one prime divisor. a(7) = 4 as a(5) + a(6) = 8 + 7 = 15 which has two prime divisors, and 4 is the smallest unused number that has two prime divisors.
a(4) = 4 as a(2) + a(3) = 2 + 3 = 5 which has one distinct prime divisor, and 4 is the smallest unused number that has one distinct prime divisor. a(10) = 12 as a(8) + a(9) = 8 + 10 = 18 which has two distinct prime divisors, and 12 is the smallest unused number that has two distinct prime divisors.
nn = 120; c[] := False; f[x] := PrimeNu[x]; Array[Set[{a[#], c[#]}, {#, True}] &, 2]; i = 1; j = s = 2; u = 3; Do[k = u; s = f[i + j]; While[Or[c[k], f[k] != s], k++]; Set[{a[n], c[k], i, j}, {k, True, j, k}]; If[k == u, While[c[u], u++]], {n, 3, nn}]; Array[a, nn] (* Michael De Vlieger, Jul 08 2023 *)
a(3) = 3 as the sum of all previous terms is 1 + 2 = 3 which contains one distinct prime factor, and 3 is the smallest unused number that also contains one distinct prime factor. a(6) = 12 as the sum of all previous terms is 1 + 2 + 3 + 6 + 10 = 22 which contains two distinct prime factors, and 12 is the smallest unused number that also contains two distinct prime factors.
Comments