OFFSET
1,1
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
Table of n, a(n) and prime decomposition for n = 1..12:
n a(n) prime decomposition
------------------------------
1 12 2^2 * 3
2 24 2^3 * 3
3 48 2^4 * 3
4 60 2^2 * 3 * 5
5 96 2^5 * 3
6 120 2^3 * 3 * 5
7 180 2^2 * 3^2 * 5
8 192 2^6 * 3
9 240 2^4 * 3 * 5
10 360 2^3 * 3^2 * 5
11 384 2^7 * 3
12 420 2^2 * 3 * 5 * 7
MATHEMATICA
(* Load May 19 2018 function f at A025487, then run the following: *)
rad[x_] := Times @@ FactorInteger[x][[All, 1]]; Select[Union@ Flatten[f[6][[3 ;; -1, 2 ;; -1]] ], ! Divisible[#, rad[#]^2] &]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Michael De Vlieger, Jul 15 2025
STATUS
approved
