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!)
A084953 Numbers k such that k! is the sum of 4 but no fewer nonzero squares. 3
10, 12, 24, 25, 48, 49, 54, 60, 78, 91, 96, 97, 107, 114, 120, 121, 142, 151, 167, 170, 172, 180, 192, 193, 212, 222, 226, 238, 240, 241, 246, 252, 270, 279, 301, 307, 309, 318, 327, 333, 344, 345, 357, 360, 361, 367, 375, 379, 384, 385, 403, 405, 421, 424, 425 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The asymptotic density of this sequence is 1/8 (Deshouillers and Luca, 2010). - Amiram Eldar, Jan 11 2021
LINKS
Rob Burns, Factorials and Legendre's three-square theorem, arXiv:2101.01567 [math.NT], 2021.
Jean-Marc Deshouillers and Florian Luca, How often is n! a sum of three squares?, in: The legacy of Alladi Ramakrishnan in the mathematical sciences, Springer, New York, 2010, pp. 243-251.
FORMULA
Equivalently, k! is of the form (4^i)*(8*j+7), i >= 0, j >= 0.
EXAMPLE
a(1) = 10 because 10! cannot be written as the sum of fewer than 4 squares.
MATHEMATICA
Select[Range[500], Mod[#!/4^IntegerExponent[#!, 4], 8] == 7 &] (* Amiram Eldar, Jan 11 2021 *)
PROG
See link.
(PARI) isA004215(n)= n\4^valuation(n, 4)%8==7;
isok(n) = isA004215(n!); \\ Michel Marcus, Dec 30 2020
(Python 3.10+)
from math import factorial
from itertools import count, islice
def A084953_gen(startvalue=1): # generator of terms >= startvalue
return filter(lambda n:(factorial(n)>>((n-n.bit_count())&-2))&7==7, count(max(startvalue, 1)))
A084953_list = list(islice(A084953_gen(), 30)) # Chai Wah Wu, Jul 09 2022
CROSSREFS
Complement of A267215.
Sequence in context: A108703 A098785 A022324 * A235686 A087697 A241177
KEYWORD
nonn
AUTHOR
Hugo Pfoertner, Jun 15 2003
EXTENSIONS
Edited and extended by Robert G. Wilson v, Jun 17 2003
Added missing term 357 by Rob Burns, Dec 30 2020
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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)