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!)
A257644 First differences of A264100. 4
1, 3, 8, 14, 24, 32, 48, 58, 77, 93, 115, 129, 163, 179, 207, 235, 271, 291, 336, 358, 406, 442, 482, 508, 576, 610, 656, 700, 762, 794, 874, 908, 977, 1029, 1087, 1139, 1239, 1279, 1343, 1403, 1501, 1545, 1649, 1695, 1785, 1869, 1945, 1995, 2129, 2189 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Cumulative sum of A007503, starting with 1.
LINKS
PROG
(PARI) alist(n)=my(x); vector(n, k, if(k==1, x=1, x+=sigma(k-1)+numdiv(k-1)))
(Haskell)
a257644 n = a257644_list !! n
a257644_list = scanl (+) 1 a007503_list -- Reinhard Zumkeller, Nov 09 2015
(Python)
from math import isqrt
def A257644(n): return (-(s:=isqrt(n))*(s*(s+4)+5)+sum(((q:=n//w)+1)*(q+(w<<1)+4) for w in range(1, s+1))>>1)+1 # Chai Wah Wu, Oct 31 2023
CROSSREFS
Sequence in context: A264689 A146158 A062354 * A135940 A126430 A082474
KEYWORD
nonn
AUTHOR
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 23 08:29 EDT 2024. Contains 371905 sequences. (Running on oeis4.)