A366047 Starting with a(1) = 2, the lexicographically earliest infinite sequence of distinct positive integers such that |a(n) - a(n-1)| is a divisor of a(n)*a(n-1), where |a(n) - a(n-1)| is not a prime and greater than 1.
2, 6, 10, 14, 18, 9, 36, 12, 4, 8, 16, 20, 24, 15, 30, 21, 42, 28, 32, 40, 44, 22, 26, 52, 48, 39, 78, 60, 35, 70, 45, 54, 27, 108, 72, 56, 64, 68, 34, 38, 76, 80, 55, 110, 66, 33, 132, 84, 63, 90, 65, 130, 104, 88, 92, 46, 50, 25, 150, 75, 100, 96, 87, 174, 58, 62, 124, 116, 112, 98, 49, 392
Offset: 1
Keywords
Examples
a(9) = 4 as |4 - a(8)| = |4 - 12| = 8, and 8 is a divisor of 4*12 = 48 and is not a prime. Note that |3 - 12| = 9 is a divisor of 3*12 = 36 and is not a prime, but as shown above a prime term will terminate the sequence so is not permitted.
Links
- Scott R. Shannon, Table of n, a(n) for n = 1..10000.
- Michael De Vlieger, Log log scatterplot of a(n) n = 1..1024, showing prime powers in gold, squarefree numbers in green, and numbers neither squarefree nor prime powers in blue, highlighting powerful numbers that are not prime powers in light blue.
Programs
-
Mathematica
nn = 120; c[_] := False; s = {2, 6}; f[x_] := Times @@ FactorInteger[x][[All, 1]]; MapIndexed[Set[{a[First[#2]], c[#1]}, {#1, True}] &, s]; Set[{j, u}, {s[[-1]], 4}]; Do[k = u; While[Or[c[k], #1 < 4, PrimeQ[#1], ! Divisible[j*k, #1], ! Divisible[j, #2], ! Divisible[k, #2]] & @@ {#, f[#]} &@ Abs[j - k], k++]; Set[{a[n], c[k], j}, {k, True, k}]; If[k == u, While[Or[c[u], PrimeQ[u]], u++]], {n, Length[s] + 1, nn}]; Array[a, nn] (* Michael De Vlieger, Sep 29 2023 *)
Comments