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!)
A007563 Number of rooted connected graphs where every block is a complete graph.
(Formerly M2751)
15

%I M2751 #56 Aug 05 2018 20:44:50

%S 0,1,1,3,8,25,77,258,871,3049,10834,39207,143609,532193,1990163,

%T 7503471,28486071,108809503,417862340,1612440612,6248778642,

%U 24309992576,94905791606,371691137827,1459935388202,5749666477454

%N Number of rooted connected graphs where every block is a complete graph.

%D F. Harary and E. M. Palmer, Graphical Enumeration, Academic Press, NY, 1973, p. 71, (3.4.13).

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H Vaclav Kotesovec, <a href="/A007563/b007563.txt">Table of n, a(n) for n = 0..1600</a> (first 200 terms from T. D. Noe)

%H Maryam Bahrani and Jérémie Lumbroso, <a href="http://arxiv.org/abs/1608.01465">Enumerations, Forbidden Subgraph Characterizations, and the Split-Decomposition</a>, arXiv:1608.01465 [math.CO], 2016.

%H M. Bernstein and N. J. A. Sloane, <a href="https://arxiv.org/abs/math/0205301">Some canonical sequences of integers</a>, arXiv:math/0205301 [math.CO], 2002; Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to arXiv version]

%H M. Bernstein and N. J. A. Sloane, <a href="/A003633/a003633_1.pdf">Some canonical sequences of integers</a>, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures]

%H INRIA Algorithms Project, <a href="http://ecs.inria.fr/services/structure?nbr=167">Encyclopedia of Combinatorial Structures 167</a>

%H N. J. A. Sloane, <a href="/transforms.txt">Transforms</a>

%F Shifts left when Euler transform is applied twice.

%F a(n) ~ c * d^n / n^(3/2), where d = 4.189610958393826965527036454524044275... (see A245566), c = 0.1977574301782950818433893126632477845870281049591883888... . - _Vaclav Kotesovec_, Jul 26 2014

%p with(numtheory): etr:= proc(p) local b; b:= proc(n) option remember; if n=0 then 1 else (add(d*p(d), d=divisors(n)) +add(add(d*p(d), d=divisors(j)) *b(n-j), j=1..n-1))/n fi end end: b:= etr(a): c:= etr(b): a:= n-> if n=0 then 0 else c(n-1) fi: seq(a(n), n=0..25); # _Alois P. Heinz_, Sep 06 2008

%t etr[p_] := 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]; a[0] = 0; a[n_] := etr[etr[a]][n-1]; Table[a[n], {n, 0, 25}] (* _Jean-François Alcover_, May 28 2013, after _Alois P. Heinz_ *)

%o (PARI)

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

%o seq(n)={my(v=[1]); for(i=2, n, v=concat([1], EulerT(EulerT(v)))); concat([0], v)} \\ _Andrew Howroyd_, May 20 2018

%Y Cf. A007549, A030019, A035051, A035052, A035053.

%Y Column k=2 of A144042.

%Y Cf. A245566.

%K nonn,nice,eigen

%O 0,4

%A _N. J. A. Sloane_

%E New description from _Christian G. Bower_, Oct 15 1998

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 25 11:16 EDT 2024. Contains 371967 sequences. (Running on oeis4.)