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!)
A320225 a(1) = 1; a(n > 1) = Sum_{k = 1..n} Sum_{d|k, d < k} a(d). 6

%I #22 Jan 22 2023 20:44:54

%S 1,1,2,4,5,9,10,16,19,26,27,44,45,57,65,87,88,120,121,158,171,200,201,

%T 278,284,331,353,426,427,536,537,646,676,766,782,982,983,1106,1154,

%U 1365,1366,1617,1618,1851,1943,2146,2147,2589,2600,2917,3008,3390,3391

%N a(1) = 1; a(n > 1) = Sum_{k = 1..n} Sum_{d|k, d < k} a(d).

%H Seiichi Manyama, <a href="/A320225/b320225.txt">Table of n, a(n) for n = 1..10000</a>

%F a(1) = 1; a(n > 1) = Sum_{d = 1..n-1} a(d) * floor(n/d-1).

%F G.f. A(x) satisfies A(x) = x + (1/(1 - x)) * Sum_{k>=2} A(x^k). - _Ilya Gutkovskiy_, Sep 06 2019

%t sau[n_]:=If[n==1,1,Sum[sau[d],{k,n},{d,Most[Divisors[k]]}]];

%t Table[sau[n],{n,30}]

%o (Python)

%o from functools import lru_cache

%o @lru_cache(maxsize=None)

%o def A320225(n): return 1 if n == 1 else sum(A320225(d)*(n//d-1) for d in range(1,n)) # _Chai Wah Wu_, Jun 08 2022

%Y Cf. A002541, A003238, A010766, A014668, A126656, A167865, A316782, A317712, A320222, A320224.

%K nonn

%O 1,3

%A _Gus Wiseman_, Oct 07 2018

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 25 13:33 EDT 2024. Contains 371971 sequences. (Running on oeis4.)