A369825 a(1,2) = 1,2; thereafter let i = a(n-2) and r(n) = a(1)*a(2)*...*a(n-1): a(n) is the smallest novel multiple m of w = rad(r(n))/rad(i), where rad is A007947.
1, 2, 4, 3, 6, 8, 5, 15, 12, 10, 20, 9, 18, 30, 25, 7, 42, 60, 35, 14, 24, 45, 70, 28, 21, 75, 40, 56, 63, 90, 50, 49, 84, 120, 55, 77, 126, 150, 110, 154, 105, 135, 22, 308, 210, 165, 11, 98, 420, 330, 33, 91, 910, 660, 66, 182, 455, 495, 132, 364, 1365, 825
Offset: 1
Keywords
Examples
a(3) = 4 because rad(1*2)/rad(1) = 2 and 4 is the least novel multiple of 2. a(4) = 3 because rad(1*2*4)/rad(2) = 1, and 3 is the least novel multiple of 1. a(5) = 6 since rad(1*2*4*3)/rad(4) = 3 and 6 is the least novel multiple of 3. a(6) = 8, the least novel multiple of 2, since rad(1*2*4*3*6)/rad(3) = 2. a(7) = 5 since rad(1*2*4*3*6*8)/rad(6) = 1 and 5 is the least novel multiple of 1. a(8) = 15 since rad(m)/rad(i) = 30/2 = 15, which has not appeared previously. Table of n, a(n) for primes (in 3rd column, i means rad(i) = rad(a(r)); ii means rad(i) properly divides rad(r(n)), and both rad(i) and rad(r(n)) are (for the data shown here) consecutive primorials: 2 2 (given) 4 3 i 7 5 i 16 7 i 47 11 ii 96 13 ii 193 17 ii 476 19 ii 697 23 ii 1168 29 ii 1349 31 ii 4613 37 ii 8898 41 ii 19728 43 ii 40553 47 ii 49054 53 ii 63802 59 ii 240925 61 ii 681766 71 ii 2191325 79 ii 9061722 73 ii 13178788 89 ii 26120340 97 ii
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..10000
- Michael De Vlieger, Log log scatterplot of a(n), n = 1..2^20.
- Michael De Vlieger, Log log scatterplot of a(n), n = 1..2^14, showing primes in red, composite prime powers in gold, squarefree composites in green, and numbers neither squarefree nor prime powers in blue and purple, accentuating primorials in large green, and powerful numbers that are not prime powers in purple.
- Michael De Vlieger, Plot p^k | a(n) at (x,y) = (n, pi(p)) for n = 1..2^11, 12X vertical exaggeration, with a color function showing k = 1 in black, k = 2 in red, ... maximum value of k in reference range in magenta. The color bar under the plot indicates numbers as immediately above, red = prime, etc.
- Michael De Vlieger, Plot a(n) at (x,y) = (x mod 1024, -floor(x/1024)) for n = 1..2^20, showing primes in red, composite prime powers in gold, squarefree composites in green, and numbers neither squarefree nor prime powers in blue and purple, the latter color indicating powerful numbers that are not prime powers. Indicates large-scale pattern of prime power decomposition.
- Michael De Vlieger, Remarks on this sequence, data regarding primes and primorials, and cellular automaton like behavior
Programs
-
Mathematica
nn = 1000; c[] := False; m[] := 1; f[x_] := f[x] = Times @@ FactorInteger[x][[All, 1]]; Array[Set[{a[#], c[#], m[#]}, {#, True, 2}] &, 2]; i = 1; j = p = 2; Do[(While[c[Set[k, # m[#]]], m[#]++]) &[p/i]; Set[{a[n], c[k], i, j, p}, {k, True, f[j], k, f[p*k]}], {n, 3, nn}]; Array[a, nn] (* Michael De Vlieger, Feb 03 2024 *)
Comments