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!)
A308076 G.f. A(x) satisfies: A(x) = x + 2*A(x^2) + 4*A(x^3) + 8*A(x^4) + ... + 2^(k-1)*A(x^k) + ... 3
1, 2, 4, 12, 16, 48, 64, 168, 272, 576, 1024, 2288, 4096, 8448, 16512, 33456, 65536, 132448, 262144, 526784, 1049088, 2101248, 4194304, 8399232, 16777472, 33570816, 67110976, 134252288, 268435456, 536942336, 1073741824, 2147618976, 4294975488, 8590196736, 17179871232 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(1) = 1; a(n) = Sum_{d|n, d<n} 2^(n/d-1)*a(d).
a(n) ~ 2^(n-1). - Vaclav Kotesovec, Oct 16 2019
MATHEMATICA
terms = 35; A[_] = 0; Do[A[x_] = x + Sum[2^(k - 1) A[x^k], {k, 2, terms}] + O[x]^(terms + 1) //Normal, terms + 1]; Rest[CoefficientList[A[x], x]]
a[n_] := If[n == 1, n, Sum[If[d < n, 2^(n/d - 1) a[d], 0], {d, Divisors[n]}]]; Table[a[n], {n, 1, 35}]
CROSSREFS
Sequence in context: A053636 A181135 A054440 * A303819 A074646 A097001
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 11 2019
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 July 4 14:17 EDT 2024. Contains 373994 sequences. (Running on oeis4.)