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”).

A127189
E.g.f.: sqrt((1+4*x)/(1+2*x)).
0
1, 1, -5, 39, -423, 5985, -105885, 2269575, -57475215, 1684565505, -56176247925, 2101511463975, -87163146984375, 3969387329933025, -196863216968342925, 10560219055989978375, -609129291476291961375, 37591662102746977850625, -2471292534125033454961125
OFFSET
0,3
FORMULA
D-finite with recurrence: a(n) +(6*n-7)*a(n-1) +8*(n-1)*(n-2)*a(n-2)=0. - R. J. Mathar, Jan 25 2020
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Sqrt[(1 + 4 x) / (1 + 2 x)], {x, 0, nn}], x] Range[0, nn]!] (* Vincenzo Librandi, Jan 26 2020 *)
PROG
(Magma) m:=20; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Sqrt((1+4*x)/(1+2*x)))); [Factorial(n-1)*b[n]: n in [1..m]]; // Vincenzo Librandi, Jan 26 2020
CROSSREFS
Sequence in context: A308939 A317618 A024216 * A121354 A122486 A187739
KEYWORD
sign
AUTHOR
N. J. A. Sloane, Mar 26 2007
STATUS
approved