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”).

A378875
Number of Achilles numbers k between consecutive perfect powers.
0
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 2, 0, 0, 1, 1, 0, 2, 0, 0, 2, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 2, 1, 0, 1, 0, 3, 0, 0
OFFSET
1,34
COMMENTS
Within the sequence S = A001694 of powerful numbers, we have either perfect powers k (in A001597) and numbers m that are not perfect powers, i.e., Achilles numbers (in A052486). This sequence is the number of m between k.
LINKS
EXAMPLE
We partition S = A001694 by numbers k in A001597 (in brackets) and derive the following irregular table:
[1]; hence a(1) = 0,
[4]; a(2) = 0,
[8]; a(3) = 0,
...
[64], 72; a(11) = 1,
[81]; a(12) = 0,
[100], 108; a(13) = 1,
...
[625], 648, 675; a(34) = 2,
...
[4489], 4500, 4563, 4608; a(85) = 3, etc.
MATHEMATICA
nn = 2^12;
s = Union@ Flatten@ Table[a^2*b^3, {b, Surd[nn, 3]}, {a, Sqrt[nn/b^3]}];
-1 + Length /@ TakeList[s,
{1}~Join~Differences@
Position[s, _?(GCD @@ FactorInteger[#][[All, -1]] > 1 &),
Heads -> False][[All, 1]] ]
CROSSREFS
KEYWORD
nonn,easy,new
AUTHOR
Michael De Vlieger, Dec 09 2024
STATUS
approved