login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A260212
Integers n such that core(n), core(n+1), core(n+2) are smaller than n^(1/2) where core(n) is A007913(n), the squarefree part of n.
1
48, 9800, 31211, 32798, 48373, 59534, 63000, 118579, 373827, 488187, 629693, 830464, 1294298, 3815174, 8388223, 9235520, 9516680, 9841094, 11121382, 12708359, 14325848, 15407171, 18966023, 19890624, 24737542, 28140000, 29320000, 29445038, 34032190, 38033406
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
Sequence in context: A293094 A233199 A232160 * A295590 A233220 A377749
KEYWORD
nonn
AUTHOR
Giovanni Resta, Jul 19 2015
STATUS
approved