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.

Previous Showing 11-12 of 12 results.

A271215 Number of loop-free assembly graphs with n rigid vertices.

Original entry on oeis.org

1, 0, 1, 4, 24, 184, 1911, 24252, 362199, 6162080, 117342912, 2469791336, 56919388745, 1425435420600, 38543562608825, 1119188034056244, 34733368101580440, 1147320305439301344, 40190943859500501151, 1488212241729974297796, 58080468361734193793551
Offset: 0

Views

Author

Jonathan Burns, Apr 13 2016

Keywords

Comments

Number of chord diagrams (equivalent up to reflection) that do not contain any simple chords, e.g., 121332 contains the simple chord 33.

Examples

			For n=0 the a(0)=1 solution is { ∅ }.
For n=1, a(1)=0 since the only assembly graph with one rigid vertex is the loop 11.
For n=2, the a(2)=1 solution is { 1212 }.
For n=3, the a(3)=4 solutions are { 121323, 123123, 123231, 123132 }.
		

References

  • J. Burns, Counting a Class of Signed Permutations and Chord Diagrams related to DNA Rearrangement, Preprint.

Crossrefs

Programs

  • Mathematica
    (Table[Sum[Binomial[n,i]*(2*n-i)!/2^(n-i)*(-1)^(i)/n!,{i,0,n}],{n,0,20}]+RecurrenceTable[{a[n]==2a[n-1]+(2n-3)a[n-2]-(2n-5)a[n-3]+2a[n-4]-a[n-5],a[0]==1,a[1]==0,a[2]==1,a[3]==3,a[4]==12},a[n],{n,0,20}])/2
  • PARI
    f(n) = sum(k=0, n, (2*n-k)! / (k! * (n-k)!) * (-1/2)^(n-k) ); \\ A000806
    lista(nn) = {my(va = vector(nn)); va[1] = 1; va[2] = 0; va[3] = 1; va[4] = 3; va[5] = 12; for (n=5, nn-1, va[n+1] = 2*va[n] + (2*n-3)*va[n-1] - (2*n-5)*va[n-2] + 2*va[n-3] - va[n-4];); vector(nn-1, n, (va[n] + abs(f(n-1)))/2);} \\ Michel Marcus, Jul 28 2020

Formula

a(n) ~ (2n/e)^n / (e * sqrt(2)).
a(n) = (|A000806(n)| + A271218(n)) / 2.
a(n)/A132101(n) ~ 1/e.

A210281 (8n)!/8^n.

Original entry on oeis.org

1, 5040, 326918592000, 1211813284635233280000, 64240926985765022013480960000000, 24899758399899222849902687670779904000000000, 47355329866546908076714664639943599847875543040000000000
Offset: 0

Views

Author

Mohammad K. Azarian, Apr 12 2012

Keywords

Crossrefs

Programs

Formula

E.g.f.: 1/(1-x^8/8).
Previous Showing 11-12 of 12 results.