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!)
A344067 Expansion of Product_{k>=1} (1 + 8^(k-1)*x^k). 6
1, 1, 8, 72, 576, 5120, 41472, 364544, 2949120, 25952256, 209977344, 1830813696, 14931722240, 129251672064, 1053340729344, 9123584278528, 74294344286208, 639503450505216, 5239722662166528, 44846880273727488, 367008185258606592, 3144110674230116352, 25718087147075928064 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..A003056(n)} q(n,k) * 8^(n-k), where q(n,k) is the number of partitions of n into k distinct parts.
a(n) ~ (-polylog(2, -1/8))^(1/4) * 8^n * exp(2*sqrt(-polylog(2, -1/8)*n)) / (6*sqrt(Pi/8)*n^(3/4)). - Vaclav Kotesovec, May 09 2021
MATHEMATICA
nmax = 22; CoefficientList[Series[Product[(1 + 8^(k - 1) x^k), {k, 1, nmax}], {x, 0, nmax}], x]
Table[Sum[Length[Select[IntegerPartitions[n, {k}], UnsameQ @@ # &]] 8^(n - k), {k, 0, Floor[(Sqrt[8 n + 1] - 1)/2]}], {n, 0, 22}]
PROG
(PARI) seq(n)={Vec(prod(k=1, n, 1 + 8^(k-1)*x^k + O(x*x^n)))} \\ Andrew Howroyd, May 08 2021
CROSSREFS
Sequence in context: A304826 A270241 A054615 * A111919 A052379 A246940
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 08 2021
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 June 29 22:01 EDT 2024. Contains 373856 sequences. (Running on oeis4.)