login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A373283
Expansion of Sum_{k>=0} x^(7^k) / (1 - 7*x^(7^k)).
5
1, 7, 49, 343, 2401, 16807, 117650, 823543, 5764801, 40353607, 282475249, 1977326743, 13841287201, 96889010414, 678223072849, 4747561509943, 33232930569601, 232630513987207, 1628413597910449, 11398895185373143, 79792266297612050, 558545864083284007
OFFSET
1,2
LINKS
FORMULA
G.f. A(x) satisfies A(x) = x/(1 - 7*x) + A(x^7).
If n == 0 (mod 7), a(n) = 7^n + a(n/7) otherwise a(n) = 7^n.
a(n) = Sum_{d|n} d * A373277(d).
PROG
(PARI) b(n, k) = sumdiv(n, d, (gcd(d, k)==1)*(moebius(d)*k^(n/d)))/(k*n);
a(n, k=7) = sumdiv(n, d, d*b(d, k));
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 30 2024
STATUS
approved