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!)
A362855 a(n) = n for n <= 3; for n > 3, a(n) is the least novel multiple of k, the product of all distinct prime factors of a(n-2) that do not divide a(n-1). 4

%I #18 Apr 24 2024 03:07:55

%S 1,2,3,4,6,5,12,10,9,20,15,8,30,7,60,14,45,28,75,42,25,84,35,18,70,21,

%T 40,63,50,105,16,210,11,420,22,315,44,525,66,140,33,280,99,350,132,

%U 175,198,245,264,385,24,770,27,1540,36,1155,26,2310,13,4620,39,3080,78,1925,156,2695,234,3465,52,5775

%N a(n) = n for n <= 3; for n > 3, a(n) is the least novel multiple of k, the product of all distinct prime factors of a(n-2) that do not divide a(n-1).

%C Motivated by A362631, but instead of using one prime divisor of a(n-2) which does not divide a(n-1), the product of all such primes is used to compute a(n). - _David James Sycamore_, May 07 2023

%C From _Michael De Vlieger_, May 27 2023: (Start)

%C Primes p(k) enter the sequence in order and fairly regularly through a(20543) = p(15) = 47, immediately following primorial A002110(k-1). However, a(87723) = p(17) = 59 is the next prime to appear, following a(87722) = A002110(16).

%C Conjecture: all primes appear eventually, but not in order. (End)

%C Similar to A280866, except that the denominator here is rad(a(n-1)) instead of rad(a(n-2)). Also related to A369825. - _David James Sycamore_, Jan 27 2024

%C From _Michael De Vlieger_, Apr 23 2024: (Start)

%C Conjecture: permutation of natural numbers.

%C Conjecture: the smallest missing number is always either prime or a powerful number.

%C Primes do not appear in order; a(87723) = 59 but a(91307) = 53.

%C Powerful numbers appear in clusters, e.g., for n roughly between 91200 and 91320.

%C Though it appears primorials are always followed by primes, it is logically possible but rare that primorials can be followed by a composite number. (End)

%H Michael De Vlieger, <a href="/A362855/b362855.txt">Table of n, a(n) for n = 1..10000</a>

%H Michael De Vlieger, <a href="/A362855/a362855.png">Log log scatterplot of a(n)</a>, n = 1..701, showing primes in red, composite prime powers in gold, squarefree composites in green, and numbers neither squarefree nor prime powers in blue. Powerful numbers are labeled in gold (if a prime power) or blue. Primorials P(i) = A002110(i) are labeled in green.

%H Michael De Vlieger, <a href="/A362855/a362855_2.png">Log log scatterplot of a(n)</a> for n = 1..2^20.

%H Michael De Vlieger, <a href="/A362855/a362855_3.png">Plot of k = pi(p) | a(n) at (x, y) = (n, k)</a>, n = 1..4581, with a color function representing multiplicity where black indicates 1, red = 2, etc. The bar of color at the bottom indicates primes in red, composite prime powers in gold, composite squarefree in green, and other numbers in blue.

%H Michael De Vlieger, <a href="https://doi.org/10.13140/RG.2.2.17445.72169">Divisibility Based Lexically Earliest Sequence with Cellular Automaton Behavior</a>, ResearchGate, 2024.

%F A007947(a(n) * a(n+1)) | A007947(a(n+1) * a(n+2)). - _Peter Munn_, Apr 18 2024

%e From _Michael De Vlieger_, Apr 23 2024: (Start)

%e Let rad(x) = A007947(x) and let P(x) = A002110(x).

%e Let S = { prime p : p | a(n-2) } and let T = { prime p : p | a(n-1) }. Then k = Product_{p in S\T} p = rad(a(n-2)*a(n-1))/rad(a(n-1)).

%e a(3) = 3 since rad(1*2)/rad(2) = 1; a(1) = 1, a(2) = 2, therefore a(3) = 3*1.

%e a(4) = 4 since rad(2*3)/rad(3) = 2; a(2) = 2, thus a(4) = 2*2.

%e a(5) = 6 since rad(3*4)/rad(4) = 6/2 = 3; a(3) = 3, thus a(5) = 2*3.

%e a(91305) = 108 and a(91306) = P(17), therefore k = 1 since rad(108) | P(17). The smallest missing number is 53, therefore a(91307) = 53*1. Related sequence A368133 = b is such that it is coincident with this sequence until b(91307) = 61, since prime(18) = 61 is the smallest prime that does not divide b(91306) = P(17). (End)

%t nn = 1000; c[_] := False; m[_] := 1;

%t f[x_] := f[x] = Times @@ FactorInteger[x][[All, 1]];

%t Array[Set[{a[#], c[#], m[#]}, {#, True, 2}] &, 2]; i = 1; j = r = 2;

%t Do[(While[c[Set[k, # m[#]]], m[#]++]) &[r/f[j]];

%t Set[{a[n], c[k], i, j, r}, {k, True, j, k, f[j*k]}], {n, 3, nn}], n];

%t Array[a, nn] (* _Michael De Vlieger_, Feb 21 2024 *)

%Y Cf. A002110, A007947, A280866, A306237, A362631, A368133, A369825.

%K nonn

%O 1,2

%A _Michael De Vlieger_ and _David James Sycamore_, May 06 2023

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 September 5 02:56 EDT 2024. Contains 375685 sequences. (Running on oeis4.)