login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A260373 The nearest perfect square to n! 3
1, 1, 1, 4, 25, 121, 729, 5041, 40401, 362404, 3629025, 39917124, 478996996, 6226945921, 87178467600, 1307674583296, 20922793332736, 355687416544329, 6402373660047556, 121645100663836929, 2432902009335560361, 51090942169052381124, 1124000727752683686724 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
a(n) is well defined as the squares are alternatingly odd and even and thus the average of two successive squares is not an integer and thus no integer is equidistant to two successive squares. - Chai Wah Wu, Jul 24 2015
LINKS
FORMULA
a(n) = A055227(n)^2.
EXAMPLE
6! = 720. The nearest perfect square is 729.
PROG
(PARI) a(n)=round(sqrt(n!))^2 \\ Charles R Greathouse IV, Jul 23 2015
(Python)
from gmpy2 import isqrt
A260373_list, g = [1], 1
for i in range(1, 101):
....g *= i
....s = isqrt(g)
....t = s**2
....A260373_list.append(int(t if g-t-s <= 0 else t+2*s+1)) # Chai Wah Wu, Jul 23 2015
CROSSREFS
Sequence in context: A013187 A069639 A013582 * A362391 A175733 A240479
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 18:02 EDT 2024. Contains 371750 sequences. (Running on oeis4.)