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!)
A298408 a(n) = 2*a(n-1) - a(n-3) + 2*a(floor(n/2)) + 3*a(floor(n/3)) + ... + n*a(floor(n/n)), where a(0) = 1, a(1) = 1, a(2) = 1. 3
1, 1, 1, 6, 20, 53, 130, 277, 574, 1115, 2126, 3862, 7021, 12341, 21553, 36957, 63111, 106224, 178407, 296638, 492231, 811731, 1335994, 2188950, 3583027, 5847108, 9532980, 15512342, 25226123, 40967842, 66506422, 107869832, 174908573, 283452771, 459264017 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
a(n)/a(n-1) -> (1 + sqrt(5))/2, the golden ratio (A001622), so that (a(n)) has the growth rate of the Fibonacci numbers (A000045). See A298338 for a guide to related sequences.
LINKS
MATHEMATICA
a[0] = 1; a[1] = 1; a[2] = 1;
a[n_] := a[n] = 2*a[n - 1] - a[n - 3] + Sum[k*a[Floor[n/k]], {k, 2, n}];
Table[a[n], {n, 0, 90}] (* A298408 *)
PROG
(Python)
from functools import lru_cache
@lru_cache(maxsize=None)
def A298408(n):
if n <= 2:
return 1
c, j = 2*A298408(n-1)-A298408(n-3), 2
k1 = n//j
while k1 > 1:
j2 = n//k1 + 1
c += (j2*(j2-1)-j*(j-1))*A298408(k1)//2
j, k1 = j2, n//j2
return c+(n*(n+1)-j*(j-1))//2 # Chai Wah Wu, Mar 31 2021
CROSSREFS
Sequence in context: A264314 A055909 A036596 * A038091 A027993 A028492
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 10 2018
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 August 26 05:03 EDT 2024. Contains 375454 sequences. (Running on oeis4.)