The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A318485 Number of p-trees of weight 2n + 1 in which all outdegrees are odd. 1
1, 1, 2, 5, 13, 37, 107, 336, 1037, 3367, 10924, 36438, 121045, 412789, 1398168, 4831708, 16636297, 58084208, 202101971, 712709423, 2502000811, 8880033929, 31428410158, 112199775788, 399383181020, 1433385148187, 5128572792587, 18481258241133 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
A p-tree of weight n with odd outdegrees is either a single node (if n = 1) or a finite odd-length sequence of at least 3 p-trees with odd outdegrees whose weights are weakly decreasing and sum to n.
LINKS
EXAMPLE
The a(4) = 13 p-trees of weight 9 with odd outdegrees:
((((ooo)oo)oo)oo)
(((ooo)(ooo)o)oo)
(((ooo)oo)(ooo)o)
((ooo)(ooo)(ooo))
(((ooooo)oo)oo)
(((ooo)oooo)oo)
((ooooo)(ooo)o)
(((ooo)oo)oooo)
((ooo)(ooo)ooo)
((ooooooo)oo)
((ooooo)oooo)
((ooo)oooooo)
(ooooooooo)
MATHEMATICA
b[n_]:=b[n]=If[n>1, 0, 1]+Sum[Times@@b/@y, {y, Select[IntegerPartitions[n], Length[#]>1&&OddQ[Length[#]]&]}];
Table[b[n], {n, 1, 20, 2}]
PROG
(PARI) seq(n)={my(v=vector(n)); v[1]=1; for(n=2, n, v[n] = polcoef(1/prod(k=1, n-1, 1 - v[k]*x^(2*k-1) + O(x^(2*n))) - 1/prod(k=1, n-1, 1 + v[k]*x^(2*k-1) + O(x^(2*n))), 2*n-1)/2); v} \\ Andrew Howroyd, Aug 27 2018
CROSSREFS
Sequence in context: A233281 A218551 A293297 * A005961 A036249 A126031
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 27 2018
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 May 15 19:21 EDT 2024. Contains 372549 sequences. (Running on oeis4.)