cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A343352 Expansion of Product_{k>=1} 1 / (1 - x^k)^(7^(k-1)).

This page as a plain text file.
%I A343352 #9 Apr 12 2021 12:14:01
%S A343352 1,1,8,57,428,3172,23689,176324,1312550,9757798,72480269,537854094,
%T A343352 3987751860,29540543908,218652961074,1617159619805,11951595353413,
%U A343352 88264810625245,651404299886762,4804261815210433,35410065096578748,260832137791524693,1920169120639498017,14127684273966098698
%N A343352 Expansion of Product_{k>=1} 1 / (1 - x^k)^(7^(k-1)).
%F A343352 a(n) ~ exp(2*sqrt(n/7) - 1/14 + c/7) * 7^(n - 1/4) / (2*sqrt(Pi)*n^(3/4)), where c = Sum_{j>=2} 1/(j * (7^(j-1) - 1)). - _Vaclav Kotesovec_, Apr 12 2021
%p A343352 a:= proc(n) option remember; `if`(n=0, 1, add(a(n-j)*add(
%p A343352       d*7^(d-1), d=numtheory[divisors](j)), j=1..n)/n)
%p A343352     end:
%p A343352 seq(a(n), n=0..23);  # _Alois P. Heinz_, Apr 12 2021
%t A343352 nmax = 23; CoefficientList[Series[Product[1/(1 - x^k)^(7^(k - 1)), {k, 1, nmax}], {x, 0, nmax}], x]
%t A343352 a[n_] := a[n] = If[n == 0, 1, (1/n) Sum[Sum[d 7^(d - 1), {d, Divisors[k]}] a[n - k], {k, 1, n}]]; Table[a[n], {n, 0, 23}]
%Y A343352 Cf. A034691, A104460, A144071, A343349, A343350, A343351, A343353, A343354, A343355.
%K A343352 nonn
%O A343352 0,3
%A A343352 _Ilya Gutkovskiy_, Apr 12 2021