OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = A080197(n+1)^2. - Rémy Sigrist, Sep 26 2020
Sum_{n>=1} 1/a(n) = -1 + Product_{primes p <= 13} p^2/(p^2-1) = 273347/442368. - Amiram Eldar, Oct 14 2020
MATHEMATICA
Select[ Range[75]^2, (fi = FactorInteger[#]; Max[ fi[[All, 1]] ] <= 13 && And @@ EvenQ /@ fi[[All, 2]]) &] (* Jean-François Alcover, Oct 10 2012 *)
eppQ[n_]:=Module[{fi=FactorInteger[n]}, Max[fi[[All, 1]]]<=13&&AllTrue[ fi[[All, 2]], EvenQ]]; Select[Range[6000], eppQ] (* Harvey P. Dale, Dec 26 2021 *)
PROG
(PARI) is(n)=if(issquare(n, &n), my(f=factor(n)[, 1]); #f && f[#f]<14, 0) \\ Charles R Greathouse IV, Jun 17 2013
CROSSREFS
KEYWORD
easy,nice,nonn
AUTHOR
Reikku Kulon, Sep 25 2008, Sep 26 2008
STATUS
approved