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

A087374
Smallest square >= n!.
2
1, 4, 9, 25, 121, 729, 5041, 40401, 363609, 3629025, 39917124, 479040769, 6227103744, 87178467600, 1307674583296, 20922793332736, 355687454263684, 6402373820077225, 121645100663836929, 2432902009335560361
OFFSET
1,2
MATHEMATICA
ssn[n_]:=Module[{sr=Sqrt[n]}, If[IntegerQ[sr], n, (Floor[sr]+1)^2]]; ssn/@ (Range[20]!) (* Harvey P. Dale, Dec 16 2013 *)
CROSSREFS
Sequence in context: A262753 A055851 A025494 * A081948 A191273 A087361
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Sep 09 2003
EXTENSIONS
More terms from David Wasserman, May 24 2005
STATUS
approved