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!)
A090498 Number of divisors of all the numbers from (1/2)n(n-1)+1 to n(n+1)/2, i.e., tau(1), tau(2)+tau(3), tau(4)+tau(5)+tau(6), tau(7)+tau(8)+tau(9)+tau(10), ..., where tau(j) is the number of divisors of j. 2
1, 4, 9, 13, 18, 25, 31, 39, 42, 49, 61, 64, 73, 81, 92, 93, 101, 115, 120, 135, 131, 148, 157, 165, 171, 178, 195, 195, 210, 219, 229, 238, 247, 251, 273, 268, 281, 295, 308, 315, 317, 339, 340, 361, 353, 382, 381, 395, 407, 406, 427, 431, 452, 457, 469, 472 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Sequence is not increasing: a(20)=135 and a(21)=131. Difference in the number of lattice points under the curve xy = n(n+1)/2 and xy = n(n-1)/2. - Emeric Deutsch, Aug 03 2005
LINKS
MAPLE
with(numtheory): a:=n->add(tau(j), j=n*(n-1)/2+1..n*(n+1)/2): seq(a(n), n=1..64); # Emeric Deutsch, Aug 03 2005
MATHEMATICA
Module[{nn=60, ds}, ds=DivisorSigma[0, Range[(nn(nn+1))/2]]; Table[Total[ Take[ ds, {(n(n-1))/2+1, (n(n+1))/2}]], {n, nn}]] (* Harvey P. Dale, Mar 14 2014 *)
With[{nn=60}, Total/@TakeList[DivisorSigma[0, Range[(nn(nn+1))/2]], Range[ nn]]] (* Harvey P. Dale, Mar 29 2022 *)
PROG
(PARI) a(n) = sum(k=n*(n-1)/2+1, n*(n+1)/2, numdiv(k)); \\ Michel Marcus, Aug 20 2019
CROSSREFS
Cf. A000005 (tau).
Sequence in context: A312962 A312963 A312964 * A312965 A360403 A312966
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Dec 04 2003
EXTENSIONS
Corrected and extended by Emeric Deutsch, Aug 03 2005
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 17:20 EDT 2024. Contains 371962 sequences. (Running on oeis4.)