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!)
A108068 Number of ordered pairs (i,j) with i>=0, j>=0 and i!*j! = n. 2
0, 4, 4, 0, 1, 0, 4, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
D. M. Kane, On the number of ways of writing T as a product of factorials, Integers: Electronic Journal of Combinatorial Number Theory, 5 (2005), #A02, 10pp.
FORMULA
lim sup_{n->infinity} a(n) = 6 [Kane].
Conjecture: max_{n->infinity} a(n) = 6 [Kane].
EXAMPLE
1 = 0!*0! = 0!*1! = 1!*0! = 1!*1!, so a(1) = 4.
PROG
(Sage)
def A108068(n) :
count = 0;
m = 0; factm = 1;
while factm <= n :
k = 0; factk = 1;
while factm * factk <= n :
if factm * factk == n :
count += 1;
k += 1; factk *= k;
m += 1; factm *= m;
return count; # Eric M. Schmidt, Dec 07 2012
CROSSREFS
Cf. A108069.
Sequence in context: A156450 A067007 A066298 * A283998 A318143 A131124
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jun 04 2005
EXTENSIONS
More terms from Christian G. Bower, Jun 04 2005
a(0) added by Eric M. Schmidt, Dec 07 2012
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 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)