A140746 Numbers n such that n^2 + 3 is powerful, (i.e., is of the form a^2*b^3, with a>=1, b>=1).
1, 37, 79196, 177833, 5290738, 9667939010
Offset: 1
Examples
37 is the sequence since 37^2 + 3 = 1372 = 2^2 * 7^3 is powerful.
References
- J.-M. De Koninck, Ces nombres qui nous fascinent, Entry 37, pp 14, Ellipses, Paris 2008.
Programs
-
Mathematica
powerfulQ[n_] := Min@FactorInteger[n][[All, 2]] > 1; Select[Range[100000], powerfulQ[#^2 + 3] &] (* Amiram Eldar, Aug 22 2018 *)
-
PARI
isok(n) = vecmin(factor(n^2+3)[,2]) > 1; \\ Michel Marcus, Aug 24 2018
Extensions
a(5) corrected and a(6) removed by Amiram Eldar, Aug 22 2018
a(6) from Giovanni Resta, Aug 23 2018
Comments