login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A025229 a(n) = a(1)*a(n-1) + a(2)*a(n-2) + ...+ a(n-1)*a(1) for n >= 3. 7
1, 3, 6, 21, 78, 318, 1356, 5997, 27222, 126138, 594132, 2836290, 13692300, 66729180, 327855768, 1622216829, 8076311142, 40427919714, 203353800324, 1027318915254, 5210182030308, 26517609163812, 135397544040744, 693364054299474 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: (1-sqrt(1-4*x-8*x^2))/2. - Michael Somos, Jun 08 2000
a(n) = Sum_{k=0..n} 2^(n-k)*C(k)*C(k+1, n-k) [offset 0]. - Paul Barry, Feb 22 2005
Another recurrence formula: n*a(n) = (4*n-6)*a(n-1)+(8*n-24)*a(n-2). - Richard Choulet, Dec 16 2009
a(n) ~ sqrt(3-sqrt(3))*(2+2*sqrt(3))^n/(4*sqrt(Pi)*n^(3/2)). - Vaclav Kotesovec, Oct 07 2012
MAPLE
A025229 := proc(n)
option remember;
if n <=1 then
n;
elif n = 2 then
3;
else
add( procname(n-i)*procname(i), i=1..n-1) ;
end if;
end proc: # R. J. Mathar, Jun 17 2015
MATHEMATICA
Table[SeriesCoefficient[(1-Sqrt[1-4*x-8*x^2])/2, {x, 0, n}], {n, 1, 20}] (* Vaclav Kotesovec, Oct 07 2012 *)
PROG
(PARI) a(n)=polcoeff((1-sqrt(1-4*x-8*x^2+x*O(x^n)))/2, n)
CROSSREFS
Sequence in context: A135686 A218244 A151961 * A073951 A032098 A292066
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)