cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A323842 Number of n-node Stanley graphs without isolated nodes.

This page as a plain text file.
%I A323842 #66 Jul 25 2024 06:59:37
%S A323842 1,0,1,2,11,72,677,8686,152191,3632916,118317913,5271781946,
%T A323842 322549557299,27208234437984,3177021912874253,515436469519284358,
%U A323842 116581257420399219175,36866447823471507563436,16339685138335030408029889,10170100145132835334268145362
%N A323842 Number of n-node Stanley graphs without isolated nodes.
%C A323842 For precise definition see Knuth (1997).
%C A323842 Also, the number of naturally labeled posets on [n] with height at most two and no isolated elements. - _David Bevan_, Nov 17 2023
%H A323842 Alois P. Heinz, <a href="/A323842/b323842.txt">Table of n, a(n) for n = 0..115</a>
%H A323842 David Bevan, Gi-Sang Cheon and Sergey Kitaev, <a href="https://arxiv.org/abs/2311.08023">On naturally labelled posets and permutations avoiding 12-34</a>, arXiv:2311.08023 [math.CO], 2023.
%H A323842 D. E. Knuth, <a href="/A323841/a323841.pdf">Letter to Daniel Ullman and others</a>, Apr 29 1997. [Annotated scanned copy, with permission]
%F A323842 a(n) = Sum_{j=0..n} (-1)^j * C(n,j) * A135922(n-j). - _Alois P. Heinz_, Sep 24 2019
%F A323842 a(n) = Sum_{k=0..n} P(n-k, k, -1), where  P(n, k, x) = x*P(n, k-1, x) + 2^k*P(n-1, k, (x+1)/2). - _Vladimir Kruchinin_, Mar 09 2020
%F A323842 G.f.: g(1,0), where g(u,v) = 1 + x*((v-1)*g(u,v) + g(2*u,u+v)). - _David Bevan_, Jul 28 2022
%F A323842 G.f.: 1/(1+z) * Sum_{k>=0} (z^k / Prod_{i=2..k} (1 - (2^i-2)*z)). - _David Bevan_, Nov 17 2023; simplified on Jul 25 2024
%p A323842 b:= proc(n) option remember; add(mul(
%p A323842       (2^(i+k)-1)/(2^i-1), i=1..n-k), k=0..n)
%p A323842     end:
%p A323842 g:= proc(n) option remember;
%p A323842       add(b(n-j)*binomial(n, j)*(-1)^j, j=0..n)
%p A323842     end:
%p A323842 a:= proc(n) option remember;
%p A323842       add(g(n-j)*binomial(n, j)*(-1)^j, j=0..n)
%p A323842     end:
%p A323842 seq(a(n), n=0..21);  # _Alois P. Heinz_, Sep 24 2019
%t A323842 b[n_] := b[n] = Sum[Product[(2^(i+k) - 1)/(2^i - 1), {i, n-k}], {k, 0, n}];
%t A323842 g[n_] := g[n] = Sum[b[n-j] Binomial[n, j] (-1)^j, {j, 0, n}];
%t A323842 a[n_] := a[n] = Sum[g[n-j] Binomial[n, j] (-1)^j, {j, 0, n}];
%t A323842 a /@ Range[0, 21] (* _Jean-François Alcover_, May 24 2020, after _Alois P. Heinz_ *)
%o A323842 (Maxima)
%o A323842 P(n, k, x):=if k<0 or n<0 then 0 else if k=0 then 1 else x*P(n, k-1, x)+
%o A323842 2^k*P(n-1, k, (x+1)/2);
%o A323842 a(n):=sum(P(n-k, k, -1), k, 0, n);
%o A323842 makelist(a(n), n, 0, 10);
%o A323842 /* _Vladimir Kruchinin_, Mar 08 2020 */
%Y A323842 Cf. A135922, A323841, A323843, A323502, A356111.
%K A323842 nonn
%O A323842 0,4
%A A323842 _N. J. A. Sloane_, Feb 04 2019
%E A323842 More terms from _Alois P. Heinz_, Sep 24 2019