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.

A012263 Expansion of e.g.f. exp(arctanh(arctanh(x))).

This page as a plain text file.
%I A012263 #15 Sep 08 2022 08:44:38
%S A012263 1,1,1,5,17,129,769,7797,66849,848481,9506241,145041093,2007271089,
%T A012263 35799178401,589807203777,12045448529397,230194642564161,
%U A012263 5298881528389185,115219444193968257,2952169020073027845
%N A012263 Expansion of e.g.f. exp(arctanh(arctanh(x))).
%H A012263 G. C. Greubel, <a href="/A012263/b012263.txt">Table of n, a(n) for n = 0..430</a>
%e A012263 E.g.f. = 1 + x + x^2/2! + 5*x^3/3! + 17*x^4/4! + 129*x^5/5! + ...
%p A012263 seq(coeff(series(factorial(n)*exp(arctanh(arctanh(x))),x,n+1), x, n), n = 0 .. 20); # _Muniru A Asiru_, Oct 28 2018
%t A012263 With[{nn=30},CoefficientList[Series[Exp[ArcTanh[ArcTanh[x]]],{x,0,nn}],x] Range[0,nn]!] (* _Ray Chandler_, Nov 28 2016 *)
%o A012263 (PARI) x='x+O('x^30); Vec(serlaplace(exp(atanh(atanh(x))))) \\ _G. C. Greubel_, Oct 28 2018
%o A012263 (Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( Exp(Argtanh(Argtanh(x))) )); [Factorial(n-1)*b[n]: n in [1..m-1]]; // _G. C. Greubel_, Oct 28 2018
%K A012263 nonn
%O A012263 0,4
%A A012263 Patrick Demichel (patrick.demichel(AT)hp.com)