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!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,10
LINKS
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

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 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)