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.
%I A331615 #7 Jan 22 2020 20:14:10 %S A331615 1,1,3,14,85,640,5703,58760,685353,8925632,128231627,2014061568, %T A331615 34312150525,630043097216,12400033125647,260357810321664, %U A331615 5807790344591953,137144754146230272,3417248676737769619,89590823377278496768,2465026658283881339301 %N A331615 E.g.f.: exp(1 / (1 - arcsin(x)) - 1). %F A331615 a(0) = 1; a(n) = Sum_{k=1..n} binomial(n-1,k-1) * A189780(k) * a(n-k). %t A331615 nmax = 20; CoefficientList[Series[Exp[1/(1 - ArcSin[x]) - 1], {x, 0, nmax}], x] Range[0, nmax]! %t A331615 A189780[0] = 1; A189780[n_] := A189780[n] = Sum[Binomial[n, k] If[OddQ[k], ((k - 2)!!)^2, 0] A189780[n - k], {k, 1, n}]; a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, k - 1] A189780[k] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 20}] %o A331615 (PARI) seq(n)={Vec(serlaplace(exp(1/(1 - asin(x + O(x*x^n))) - 1)))} \\ _Andrew Howroyd_, Jan 22 2020 %Y A331615 Cf. A006228, A189780, A189815, A331607, A331608, A331616, A331617, A331618. %K A331615 nonn %O A331615 0,3 %A A331615 _Ilya Gutkovskiy_, Jan 22 2020