OFFSET
1,1
COMMENTS
Numbers k such that there exists a number r in row k of A272619 (i.e., [1..k] \ union({row k of A038566}, {row k of A162306})) such that rad(r+m*k) | k for some m >= 0.
Powers of primes p^m, m >= 0 (p^m in A000961) are such that row p^m of A272619 and row p^m of A381801 do not intersect.
Conjecture: includes A126706 \ {12, 24}.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
EXAMPLE
Let s = r + m * k.
6 is not in this sequence since r < 6 is either coprime to 6 or rad(r) | 6.
10 is in this sequence since for r = 6 and s = 16 = 6+1*10, rad(16) | 10, while gcd(6,10)=2 and rad(6) does not divide 10.
12 is not in this sequence since row 12 of A038566 is {1, 5, 7, 11} and row 12 of A162306 is {1, 2, 3, 4, 6, 8, 9}, leaving 10 in row 12 of A272619. However, numbers congruent to 10 (mod 12) are not divisible by 3. Therefore there does not exist a number r such that rad(r+12*m) | 12 for some m >= 0.
14 is not in this sequence since row 14 of A272619 is {6, 10, 12}, and the prime power residues of 2 (mod 14) are {1,2,4,8} and of 7 are {1,7}, thus row 14 of A381801 is {0, 1, 2, 4, 7, 8}; these sets are disjoint. Therefore there does not exist a number r such that rad(r+12*m) | 12 for some m >= 0.
MATHEMATICA
nn = 120; rad[x_] := Times @@ FactorInteger[x][[All, 1]];
a382438[x_] := Module[{p}, Union@ Flatten@ Mod[TensorProduct @@ Map[(p = #; NestWhileList[Mod[p*#, x] &, 1, UnsameQ, All]) &, FactorInteger[x][[All, 1]] ], x] ];
a024619 = Select[Range[2, nn], Not @* PrimePowerQ];
Select[a024619, Function[k, ! AllTrue[Rest@ a382438[k], Divisible[k, rad[#] ] &] ] ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael De Vlieger, May 21 2026
STATUS
approved
