A144977 a(n) = A134955(n) - A134955(n-2).
1, 1, 3, 7, 16, 41, 108, 301, 881, 2684, 8455, 27444, 91248, 309593, 1068584, 3742171, 13269281, 47561455, 172092274, 627887239, 2307902495, 8539497952, 31786480760, 118960956585, 447413177185, 1690336204778, 6412656031161
Offset: 1
Keywords
Examples
a(3) = 3 since the only options are 2 hypertrees of order 3, or the forest composed by 3 isolated nodes.
Links
- Andrew Howroyd, Table of n, a(n) for n = 1..200
Programs
-
PARI
\\ here b(n) is A007563 as vector EulerT(v)={Vec(exp(x*Ser(dirmul(v, vector(#v, n, 1/n))))-1, -#v)} b(n)={my(v=[1]); for(i=2, n, v=concat([1], EulerT(EulerT(v)))); v} seq(n)={my(u=b(n)); my(v=Vec(Ser(EulerT(u))*(1-x*Ser(u)))); EulerT(vector(#v, n, if(n<>2, v[n], 0)))} \\ Andrew Howroyd, Aug 27 2018
Comments