login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A154825 Reversion of x(1-2x)/(1-3x). 1
1, -1, -1, 1, 5, 3, -21, -51, 41, 391, 407, -1927, -6227, 2507, 49347, 71109, -236079, -966129, 9519, 7408497, 13685205, -32079981, -167077221, -60639939, 1209248505, 2761755543, -4457338681, -30629783831, -22124857219 (list; graph; refs; listen; history; internal format)
OFFSET

0,5

FORMULA

G.f.: (1+3x-sqrt(1-2x+9x^2))/(2x);

G.f.: 1/(1+x/(1-2x/(1+x/(1-2x/(1+x/(1-2x/(1+.... (continued fraction).

a(n)=sum{k=0..n, C(n+k,2k)*A000108(k)*2^k*(-3)^(n-k)}.

a(n)=Sum_{k, 0<=k<=n}A131198(n,k)*(-1)^(n-k)*2^k = Sum_{k, 0<=k<=n}A090181(n,k)*(-1)^k*2^(n-k). [From Philippe DELEHAM (kolotoko(AT)wanadoo.fr), Jan 17 2009]

a(n)=Sum_{k, 0<=k<=n}A060693(n,k)*2^(n-k)*(-3)^k = Sum_{k, 0<=k<=n}A088617(n,k)*2^k*(-3)^(n-k). [From Philippe DELEHAM (kolotoko(AT)wanadoo.fr), Jan 17 2009]

a(n) = Sum_{k, 0<=k<=n}A086810(n,k)*(-1)^k*3^(n-k) = Sum_{k, 0<=k<=n}A133336(n,k)*3^k*(-1)^((n-k). [From Philippe DELEHAM (kolotoko(AT)wanadoo.fr), Jan 17 2009]

MAPLE

A154825_list := proc(n) local j, a, w; a := array(0..n); a[0] := 1;

for w from 1 to n do a[w] := -a[w-1]+2*add(a[j]*a[w-j-1], j=1..w-1)od;

convert(a, list) end: A154825_list(28); # Peter Luschny, May 19 2011

CROSSREFS

Cf.: A091593.

Sequence in context: A199637 A199636 A199638 * A091593 A139699 A069607

Adjacent sequences:  A154822 A154823 A154824 * A154826 A154827 A154828

KEYWORD

easy,sign

AUTHOR

Paul Barry (pbarry(AT)wit.ie), Jan 15 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 14:37 EST 2012. Contains 205822 sequences.