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.

Showing 1-2 of 2 results.

A012150 Expansion of e.g.f. exp(tan(arcsin(x))).

Original entry on oeis.org

1, 1, 1, 4, 13, 76, 421, 3256, 25369, 245008, 2449801, 28441216, 346065061, 4700478784, 67243537453, 1047088053376, 17192488230961, 302112622479616, 5593309059948049, 109527844826856448, 2255588021494237501
Offset: 0

Views

Author

Patrick Demichel (patrick.demichel(AT)hp.com)

Keywords

Examples

			exp(tan(arcsin(x))) = 1+x+1/2!*x^2+4/3!*x^3+13/4!*x^4+76/5!*x^5...
		

Crossrefs

Programs

  • Maple
    A012150 := proc(n) if n = 0 then 1; else add( (1+(-1)^(n-k)) *binomial((n-2)/2,(n-k)/2)/(2*k!), k=1..n) ; %*n! ; end if; end proc: # R. J. Mathar, Mar 20 2011
  • Mathematica
    Range[0, 20]! CoefficientList[Series[Exp[Tan[ArcSin[x]]], {x, 0, 20}], x] (* Or *)
    f[n_] := n! Sum[(1 + (-1)^(n - k)) Binomial[(n - 2)/2, (n - k)/2]/2/k!, {k, n}]; f[0] = 1; Array[f, 21, 0] (* Robert G. Wilson v, Feb 19 2011 *)
  • PARI
    my(x='x+O('x^30)); Vec(serlaplace(exp(tan(asin(x))))) \\ Michel Marcus, Oct 30 2022

Formula

From Vladimir Kruchinin, Feb 17 2011: (Start)
a(n) = n!*Sum_{k=1..n} A111959(n-1,k-1)*2^(k-n)/k!.
a(n) = n!*Sum_{k=1..n} (1+(-1)^(n-k))*C((n-2)/2,(n-k)/2)/(2*k!), n>0.
E.g.f.: exp(x/sqrt(1-x^2)). (End)
E.g.f.: S(x) = exp(x/sqrt(1-x^2)) = 1 + 2*(x/sqrt(1-x^2))/(G(0) - x/sqrt(1-x^2)), G(k) = 8*k + 2 + (x^2)/((1-x^2)*(8*k+6) + x^2/G(k+1)); (continued fraction). - Sergei N. Gladkovskii, Dec 16 2011
a(n) = (3*n^2 - 12*n + 13)*a(n-2) - 3*(n-4)*(n-3)^2*(n-2)*a(n-4) + (n-6)*(n-5)*(n-4)^2*(n-3)*(n-2)*a(n-6). - Vaclav Kotesovec, Nov 08 2013
a(n) ~ n^(n-1/3) * exp(3/2*n^(1/3)-n) / sqrt(3) * (1 - 19/(36*n^(1/3)) + 553/(2592*n^(2/3))). - Vaclav Kotesovec, Nov 08 2013
a(n) = n! * Sum_{k=0..floor(n/2)} binomial(n/2-1,k)/(n-2*k)!. - Seiichi Manyama, Jun 08 2024

Extensions

Name edited by Michel Marcus, Oct 30 2022

A296677 Expansion of e.g.f. arctan(arcsin(x)) (odd powers only).

Original entry on oeis.org

1, -1, 13, -173, 12409, -370137, 88556037, -2668274373, 2491377242481, 34526890553679, 202383113207336829, 25792743610973373219, 39172126704113226631401, 12501799823936578879327095, 15717805122762984314778029685, 9078237580992214462785729689355
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 18 2017

Keywords

Examples

			arctan(arcsin(x)) = x/1! - x^3/3! + 13*x^5/5! - 173*x^7/7! + 12409*x^9/9! - 370137*x^11/11! + ...
		

Crossrefs

Programs

  • Mathematica
    nmax = 16; Table[(CoefficientList[Series[ArcTan[ArcSin[x]], {x, 0, 2 nmax + 1}], x] Range[0, 2 nmax + 1]!)[[n]], {n, 2, 2 nmax, 2}]
    nmax = 16; Table[(CoefficientList[Series[(I/2) Log[1 - Log[I x + Sqrt[1 - x^2]]] - (I/2) Log[1 + Log[I x + Sqrt[1 - x^2]]], {x, 0, 2 nmax + 1}], x] Range[0, 2 nmax + 1]!)[[n]], {n, 2, 2 nmax, 2}]

Formula

E.g.f.: (i/2)*log(1 - log(i*x + sqrt(1 - x^2))) - (i/2)*log(1 + log(i*x + sqrt(1 - x^2))), where i is the imaginary unit (odd powers only).
Showing 1-2 of 2 results.