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

A277621
Number of pairs (a,b) such that a*b = n! and d(a) = d(b) with d = A000005 and a <= b.
1
1, 1, 0, 1, 0, 1, 1, 1, 0, 5, 3, 5, 5, 13, 11, 11, 11, 13, 45, 105, 136, 105, 165, 332, 492, 501, 482, 684, 720, 1095, 1656, 3273, 3136, 3901, 4948, 6674, 7641, 15047, 12879, 17217, 38901, 75540, 37743, 73594, 84249, 88592, 207324, 403493, 710536, 922853, 662019
OFFSET
0,10
EXAMPLE
For n = 9, there are 5 pairs (a,b): (384,945), (420,864), (480,756), (540,672), (560,648)
MAPLE
a:=proc(n) local S, nf, DD, d, dd:with(numtheory): S:=0:nf:=n!:DD:=divisors(nf):dd:=floor(sqrt(nf)): for d in DD while d <dd do if tau(d)=tau(nf/d) then S:=S +1 end if: end do: S end proc: # only for small n # Leonid Bedratyuk, Apr 16 2017
MATHEMATICA
a[n_] := Length@ Select[ Divisors[n!], # <= n!/# && Equal @@ DivisorSigma[0, {#, n!/#}] &]; a /@ Range[0, 20] (* Giovanni Resta, Apr 11 2017 *)
PROG
(PARI) a(n)=my(c=0); fordiv(n!, a, my(b=n!/a); if(a>b, break); if( numdiv(a) == numdiv(b), c++)); c
CROSSREFS
Cf. A000005.
Sequence in context: A194584 A073316 A245979 * A228046 A092516 A269893
KEYWORD
nonn
AUTHOR
M. Sinan Kul, Apr 11 2017
EXTENSIONS
a(26)-a(50) from Giovanni Resta, Apr 11 2017
STATUS
approved