login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A293914
Number of linear chord diagrams having n chords and minimal chord length one.
2
1, 2, 10, 69, 616, 6740, 87291, 1305710, 22149226, 420113979, 8810083360, 202397302184, 5054993327385, 136370982998354, 3951907646699026, 122432049983991285, 4038019273764782056, 141261207847788852620, 5224370049771189478371, 203670050053447478737214
OFFSET
1,2
LINKS
FORMULA
a(n) ~ (1 - exp(-1)) * 2^(n + 1/2) * n^n / exp(n). - Vaclav Kotesovec, Oct 25 2017
MAPLE
a:= proc(n) option remember; `if`(n<3, n, (4*n-6)*
a(n-1)-2*(2*n^2-8*n+7)*a(n-2)-(2*n-5)*a(n-3))
end:
seq(a(n), n=1..25);
CROSSREFS
Column k=1 of A293881.
Sequence in context: A123617 A325054 A139715 * A259114 A051575 A372940
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Oct 19 2017
STATUS
approved