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!)
A339688 a(n) = Sum_{d|n} 8^(d-1). 8
1, 9, 65, 521, 4097, 32841, 262145, 2097673, 16777281, 134221833, 1073741825, 8589967945, 68719476737, 549756076041, 4398046515265, 35184374186505, 281474976710657, 2251799830495305, 18014398509481985, 144115188210078217, 1152921504607109185 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>=1} x^k / (1 - 8*x^k).
G.f.: Sum_{k>=1} 8^(k-1) * x^k / (1 - x^k).
a(n) ~ 8^(n-1). - Vaclav Kotesovec, Jun 05 2021
MATHEMATICA
Table[Sum[8^(d - 1), {d, Divisors[n]}], {n, 1, 21}]
nmax = 21; CoefficientList[Series[Sum[x^k/(1 - 8 x^k), {k, 1, nmax}], {x, 0, nmax}], x] // Rest
PROG
(PARI) a(n) = sumdiv(n, d, 8^(d-1)); \\ Michel Marcus, Dec 13 2020
CROSSREFS
Column 8 of A308813.
Sequence in context: A154996 A128195 A103459 * A100311 A259242 A120286
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 12 2020
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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)