OFFSET
1,1
COMMENTS
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
Michael De Vlieger, 1020 pixel square bitmap of indices n = 1..1040400, read left to right, top to bottom, such that A360768(n) in this sequence appears in black, else white. There is a faint pattern apparently related to that mentioned in A360768.
Michael De Vlieger, Chart showing k < a(n), n = 1..36, rows n contain k such that rad(k) = rad(n), yet k does not divide n. These k are in A360769, the number of k in row a(n) given by A355432(a(n)).
EXAMPLE
a(1) = 75, since 75/15 >= 5. We note that rad(45) = rad(75) = 15, yet 45 does not divide 75.
a(2) = 135, since 135/15 >= 5. Note: rad(75) = rad(135) = 15, yet 45 does not divide 135.
a(3) = 147, since 147/21 >= 7. Note: rad(63) = rad(147) = 21, yet 147 mod 63 = 21.
Chart below shows k < a(n) such that rad(k) = rad(n), yet k does not divide n:
75 | 45 .
135 | . . 75 . .
147 | . 63 . . . .
189 | . . . . . . 147 . . .
a(n) 225 | . . . . . 135 . . . . . .
245 | . . . . . . . . . 175 . . .
363 | . . . 99 . . . . . . . . . . . . . 297
375 | 45 . . . . 135 . . . . . . 225 . . . . .
----------------------------------------------------------------------------
| 45 63 75 99 117 135 147 153 171 175 189 207 225 245 261 275 279 297
k in A360769
MATHEMATICA
Select[Select[Range[1, 2000, 2], Nor[SquareFreeQ[#], PrimePowerQ[#]] &], #1/#2 >= #3 & @@ {#1, Times @@ #2, #2[[2]]} & @@ {#, FactorInteger[#][[All, 1]]} &]
PROG
(PARI) is(k) = { if (k%2, my (f = factor(k)); #f~ > 1 && k/vecprod(f[, 1]~) >= f[2, 1], 0); } \\ Rémy Sigrist, Mar 29 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael De Vlieger, Mar 29 2023
STATUS
approved