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!)
A006897 a(n) is the number of hierarchical linear models on n unlabeled factors allowing 2-way interactions (but no higher order interactions); or the number of unlabeled simple graphs with <= n nodes.
(Formerly M1153)
8

%I M1153 #46 Apr 20 2020 03:51:10

%S 1,2,4,8,19,53,209,1253,13599,288267,12293435,1031291299,166122463891,

%T 50668153831843,29104823811067331,31455590793615376099,

%U 64032471295321173271027,245999896624828253856990803,1787823725042236528801735181651,24639597076850046760911809226614419

%N a(n) is the number of hierarchical linear models on n unlabeled factors allowing 2-way interactions (but no higher order interactions); or the number of unlabeled simple graphs with <= n nodes.

%C a(n) is the number of isolated points over all simple unlabelled graphs with (n+1) nodes. - _Geoffrey Critzer_, Apr 14 2012

%D R. C. Read and R. J. Wilson, An Atlas of Graphs, Oxford, 1998.

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

%H Alois P. Heinz, <a href="/A006897/b006897.txt">Table of n, a(n) for n = 0..87</a>

%F O.g.f.: A(x)/(1-x), where A(x) is o.g.f. for A000088. - _Geoffrey Critzer_, Apr 12 2012

%F a(n) = Sum_{k=0..n} A000088(k). - _Petros Hadjicostas_, Apr 19 2020

%e a(2) = 4 includes the null graph G1 = [], G2 = [o], G3 = [o o], and G4 = [o-o].

%e a(3) = 8 includes the null graph G1 = [], G2 = [o], G3 = [o o], G4 = [o-o], G5 = [o o o], G6 = [o-o o], G7 = [o-o-o], and G8 = [triangle with three unlabeled nodes]. - _Petros Hadjicostas_, Apr 10 2020

%p b:= proc(n, i, l) `if`(n=0 or i=1, 1/n!*2^((p-> add(ceil((p[j]-1)/2)

%p +add(igcd(p[k], p[j]), k=1..j-1), j=1..nops(p)))([l[], 1$n])),

%p add(b(n-i*j, i-1, [l[], i$j])/j!/i^j, j=0..n/i))

%p end:

%p a:= proc(n) option remember; b(n$2, [])+`if`(n>0, a(n-1), 0) end:

%p seq(a(n), n=0..20); # _Alois P. Heinz_, Aug 14 2019

%t nn = 15; g = Sum[NumberOfGraphs[n] x^n, {n, 0, nn}]; CoefficientList[Series[g/(1 - x), {x, 0, nn}], x] (* _Geoffrey Critzer_, Apr 12 2012 *)

%Y Partial sums of A000088.

%Y Cf. A006896 (labeled case).

%K easy,nonn,nice

%O 0,2

%A _Colin Mallows_

%E Name edited by _Petros Hadjicostas_, Apr 08 2020

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 24 10:53 EDT 2024. Contains 371936 sequences. (Running on oeis4.)