A069022 Start of the first occurrence of two consecutive numbers divisible by an n-th power.
1, 8, 80, 80, 1215, 16767, 76544, 636416, 3995648, 24151040, 36315135, 689278976, 1487503359, 1487503359, 155240824832, 785129144319, 4857090670592, 45922887663615, 157197025673216, 1375916505694208, 2280241934368767
Offset: 1
Keywords
Examples
(8, 9) is the first occurrence of two consecutive numbers divisible by a square, so a(2) = 8.
Crossrefs
Cf. A069021.
Programs
-
Mathematica
a = {1, 1}; k = 4; Do[ While[Min[a] < n, k++; a = Drop[a, 1]; a = Append[ a, Max[ Transpose[ FactorInteger[k]] [[2]] ]]]; Print[k - 1], {n, 2, 9}] (* Robert G. Wilson v *)
Extensions
More terms from Larry Reeves (larryr(AT)acm.org), Oct 12 2003
Comments