OFFSET
1,1
COMMENTS
Up to 10^12, the only quadruplet starts at 160150258573.
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..461 (terms < 10^12)
EXAMPLE
48 is a term since core(48) = 3, core(49) = 1 and core(50) = 2 are all smaller than the square root of 48.
MATHEMATICA
core[n_] := Times@@ ((#[[1]] ^ Mod[#[[2]], 2])& /@ FactorInteger@ n); Select[ Range[10^6], core[#]^2 < # && core[#+1]^2 < # && core[#+2]^2 < # &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Giovanni Resta, Jul 19 2015
STATUS
approved