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!)
A076627 a(n) = tau(n)*(n-tau(n)), where tau(n) = number of divisors of n (A000005). 2
0, 0, 2, 3, 6, 8, 10, 16, 18, 24, 18, 36, 22, 40, 44, 55, 30, 72, 34, 84, 68, 72, 42, 128, 66, 88, 92, 132, 54, 176, 58, 156, 116, 120, 124, 243, 70, 136, 140, 256, 78, 272, 82, 228, 234, 168, 90, 380, 138, 264, 188, 276, 102, 368, 204, 384, 212, 216, 114 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = A000005(n) * A049820(n). [Reinhard Zumkeller, Feb 06 2012]
EXAMPLE
a(20) = tau(20)*(20-tau(20)) = 6*(20-6) = 84.
MAPLE
with(numtheory): A076627:=n->tau(n)*(n-tau(n)): seq(A076627(n), n=1..100); # Wesley Ivan Hurt, Jul 25 2017
MATHEMATICA
#[[1]](#[[2]]-#[[1]])&/@Table[{DivisorSigma[0, n], n}, {n, 60}] (* Harvey P. Dale, May 06 2017 *)
PROG
(Haskell)
a076627 n = a000005 n * a049820 n -- Reinhard Zumkeller, Feb 06 2012
(PARI) a(n) = my(d = numdiv(n)); d*(n-d); \\ Michel Marcus, Jul 25 2017
CROSSREFS
Sequence in context: A246445 A082667 A098162 * A020489 A002240 A099798
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller, May 27 2003
EXTENSIONS
Wrong offset fixed by Reinhard Zumkeller, Feb 06 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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)