A357699 Noncubefree numbers k such that A357698(k) > k.
24, 40, 72, 120, 168, 200, 264, 280, 312, 360, 392, 408, 440, 456, 504, 520, 540, 552, 600, 616, 680, 696, 728, 744, 760, 792, 840, 888, 920, 936, 952, 984, 1032, 1064, 1128, 1144, 1160, 1176, 1224, 1240, 1272, 1288, 1320, 1368, 1400, 1416, 1464, 1480, 1496, 1560
Offset: 1
Keywords
Examples
24 = 2^3 * 3 is a term since it is divisible by a cube and A357698(24) = 28 > 24.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
f[p_, e_] := 1 + p + If[e == 1, 0, p^2]; q[n_] := AnyTrue[(fct = FactorInteger[n])[[;;, 2]], # > 2 &] && Times @@ f @@@ fct > n; Select[Range[2, 2000], q]
-
PARI
is(n) = {my(f = factor(n)); if(n == 1 || vecmax(f[,2]) < 3, return(0)); prod(i=1, #f~, 1 + f[i,1] + if(f[i,2]==1, 0, f[i,1]^2)) > n};
Comments