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!)
A275210 Expansion of (A(x)^2-A(x^2))/2 where A(x) = A001006(x)-1. 2
0, 0, 0, 2, 5, 17, 45, 129, 349, 970, 2658, 7364, 20363, 56634, 157750, 441084, 1236173, 3474672, 9789568, 27648486, 78254719, 221951037, 630717569, 1795576937, 5120472435, 14625574662, 41837913310, 119851980508, 343798008165, 987445317761, 2839518208661 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Analog of A216785 with Motzkin numbers replacing connected graph counts.
LINKS
FORMULA
a(2n+1) = A275209(2n+1).
MAPLE
b:= proc(n) option remember; `if`(n<2, 1,
((3*(n-1))*b(n-2)+(1+2*n)*b(n-1))/(n+2))
end:
a:= proc(n) option remember; add(b(j)*b(n-j), j=1..n/2)-
`if`(n=0 or n::odd, 0, (t->t*(t+1)/2)(b(n/2)))
end:
seq(a(n), n=0..40); # Alois P. Heinz, Jul 19 2016
MATHEMATICA
b[n_] := b[n] = If[n<2, 1, ((3*(n-1))*b[n-2] + (1+2*n)*b[n-1])/(n+2)];
a[n_] := a[n] = Sum[b[j]*b[n - j], {j, 1, n/2}] - If[n == 0 || OddQ[n], 0, Function[t, t*(t + 1)/2][b[n/2]]];
Table[a[n], {n, 0, 40}] (* Jean-François Alcover, May 16 2017, after Alois P. Heinz *)
CROSSREFS
Cf. A275209.
Sequence in context: A063106 A096295 A215580 * A219554 A074494 A051438
KEYWORD
nonn
AUTHOR
R. J. Mathar, Jul 19 2016
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 August 11 23:45 EDT 2024. Contains 375082 sequences. (Running on oeis4.)