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.

A297010 Expansion of e.g.f. arcsinh(x*exp(x)).

This page as a plain text file.
%I A297010 #14 Oct 02 2021 07:58:04
%S A297010 0,1,2,2,-8,-76,-264,1672,36800,261648,-1443680,-66164704,-792152448,
%T A297010 2482671424,289529373056,5294082629760,1648955815936,
%U A297010 -2474170098704128,-65494141255724544,-303927676523118080,35926135133071923200,1341060635191667045376
%N A297010 Expansion of e.g.f. arcsinh(x*exp(x)).
%H A297010 Seiichi Manyama, <a href="/A297010/b297010.txt">Table of n, a(n) for n = 0..100</a>
%e A297010 arcsinh(x*exp(x)) = x^1/1! + 2*x^2/2! + 2*x^3/3! - 8*x^4/4! - 76*x^5/5! - 264*x^6/6! + ...
%p A297010 a:=series(arcsinh(x*exp(x)),x=0,22): seq(n!*coeff(a,x,n),n=0..21); # _Paolo P. Lava_, Mar 26 2019
%t A297010 nmax = 21; CoefficientList[Series[ArcSinh[x Exp[x]], {x, 0, nmax}], x] Range[0, nmax]!
%t A297010 nmax = 21; CoefficientList[Series[Log[x Exp[x] + Sqrt[1 + x^2 Exp[2 x]]], {x, 0, nmax}], x] Range[0, nmax]!
%o A297010 (PARI) first(n) = my(x='x+O('x^n)); Vec(serlaplace(asinh(exp(x)*x)), -n) \\ _Iain Fox_, Dec 23 2017
%Y A297010 Cf. A001818, A009017, A009121, A009448, A009565, A009635, A009768, A191719, A216401, A297009.
%K A297010 sign
%O A297010 0,3
%A A297010 _Ilya Gutkovskiy_, Dec 23 2017