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!)
A134957 Number of hyperforests with n unlabeled vertices: analog of A134955 when edges of size 1 are allowed (with no two equal edges). 19

%I #15 Feb 10 2020 06:23:16

%S 1,2,6,20,75,310,1422,7094,37877,213610,1256422,7641700,47735075,

%T 304766742,1981348605,13079643892,87480944764,591771554768,

%U 4042991170169,27864757592632,193549452132550,1353816898675732,9529263306483357,67457934248821368,480019516988969011

%N Number of hyperforests with n unlabeled vertices: analog of A134955 when edges of size 1 are allowed (with no two equal edges).

%H Andrew Howroyd, <a href="/A134957/b134957.txt">Table of n, a(n) for n = 0..200</a>

%F Euler transform of A134959. - _Gus Wiseman_, May 20 2018

%e From _Gus Wiseman_, May 20 2018: (Start)

%e Non-isomorphic representatives of the a(3) = 20 hyperforests are the following:

%e {}

%e {{1}}

%e {{1,2}}

%e {{1,2,3}}

%e {{1},{2}}

%e {{1},{2,3}}

%e {{2},{1,2}}

%e {{3},{1,2,3}}

%e {{1,3},{2,3}}

%e {{1},{2},{3}}

%e {{1},{2},{1,2}}

%e {{1},{3},{2,3}}

%e {{2},{3},{1,2,3}}

%e {{2},{1,3},{2,3}}

%e {{3},{1,3},{2,3}}

%e {{1,2},{1,3},{2,3}}

%e {{1},{2},{3},{2,3}}

%e {{1},{2},{3},{1,2,3}}

%e {{1},{2},{1,3},{2,3}}

%e {{2},{3},{1,3},{2,3}}

%e {{3},{1,2},{1,3},{2,3}}

%e {{1},{2},{3},{1,3},{2,3}}

%e {{2},{3},{1,2},{1,3},{2,3}}

%e {{1},{2},{3},{1,2},{1,3},{2,3}}

%e (End)

%t etr[p_] := Module[{b}, b[n_] := b[n] = If[n == 0, 1, Sum[Sum[d*p[d], {d, Divisors[j]}]*b[n - j], {j, 1, n}]/n]; b];

%t EulerT[v_List] := With[{q = etr[v[[#]]&]}, q /@ Range[Length[v]]];

%t ser[v_] := Sum[v[[i]] x^(i - 1), {i, 1, Length[v]}] + O[x]^Length[v];

%t b[n_] := Module[{v = {1}}, For[i = 2, i <= n, i++, v = Join[{1}, EulerT[EulerT[2 v]]]]; v];

%t seq[n_] := Module[{u = 2 b[n]}, Join[{1}, EulerT[ser[EulerT[u]]*(1 - x*ser[u]) + O[x]^n // CoefficientList[#, x]&]]];

%t seq[24] (* _Jean-François Alcover_, Feb 10 2020, after _Andrew Howroyd_ *)

%o (PARI) \\ here b(n) is A318494 as vector

%o EulerT(v)={Vec(exp(x*Ser(dirmul(v, vector(#v, n, 1/n))))-1, -#v)}

%o b(n)={my(v=[1]); for(i=2, n, v=concat([1], EulerT(EulerT(2*v)))); v}

%o seq(n)={my(u=2*b(n)); concat([1], EulerT(Vec(Ser(EulerT(u))*(1-x*Ser(u)))))} \\ _Andrew Howroyd_, Aug 27 2018

%Y Cf. A030019, A035053, A048143, A054921, A134955, A134957, A134959, A144959, A304867, A304911.

%K nonn

%O 0,2

%A _Don Knuth_, Jan 26 2008

%E Terms a(7) and beyond from _Andrew Howroyd_, Aug 27 2018

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 9 09:08 EDT 2024. Contains 373239 sequences. (Running on oeis4.)