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!)
A294987 Number of compositions (ordered partitions) of 1 into exactly 8n+1 powers of 1/(n+1). 2
1, 441675, 663134389930, 2594884910993019575, 16336038155342083651640376, 130958058407369286623026190867082, 1206534243283932582765850205674424343577, 12176825528022093702548525617184407475359333407, 131223281654667714701311635640432890136981994039662720 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) ~ 8^(8*n + 3/2) / (2*Pi*n)^(7/2). - Vaclav Kotesovec, Sep 20 2019
MAPLE
b:= proc(n, r, p, k) option remember;
`if`(n<r, 0, `if`(r=0, `if`(n=0, p!, 0), add(
b(n-j, k*(r-j), p+j, k)/j!, j=0..min(n, r))))
end:
a:= n-> (k-> `if`(n=0, 1, b(k*n+1, 1, 0, n+1)))(8):
seq(a(n), n=0..12);
MATHEMATICA
b[n_, r_, p_, k_] := b[n, r, p, k] = If[n < r, 0, If[r == 0, If[n == 0, p!, 0], Sum[b[n - j, k*(r - j), p + j, k]/j!, {j, 0, Min[n, r]}]]];
a[n_] := If[n == 0, 1, b[#*n + 1, 1, 0, n + 1]]&[8];
Table[a[n], {n, 0, 12}] (* Jean-François Alcover, May 21 2018, translated from Maple *)
CROSSREFS
Row n=8 of A294746.
Sequence in context: A163612 A238069 A234150 * A350334 A287581 A230084
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Nov 12 2017
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 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)