OFFSET
1,1
EXAMPLE
25 is in the sequence since sqrt(4!*(25+1) + 1) = 25 = 5^2;
99 is in the sequence since sqrt(4!*(99+1) + 1) = 49 = 7^2. - Jon E. Schoenfield, Aug 01 2015
MATHEMATICA
lst = {}; Do[a = Sqrt[4! (n + 1) + 1]; If[IntegerQ@ a && GCD @@ Last /@ FactorInteger@a > 1, AppendTo[lst, n]], {n, 0, 1977428}]; lst (* Robert G. Wilson v, Sep 24 2008 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander R. Povolotsky, Sep 22 2008
EXTENSIONS
More terms from Robert G. Wilson v, Sep 24 2008
STATUS
approved