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!)
A238826 a(n) = p(n+3)-p(n+1), where p(n) = A238825(n). 9
1, 2, 4, 9, 22, 53, 131, 323, 798, 1968, 4853, 11958, 29463, 72581, 178803, 440474, 1085110, 2673183, 6585468, 16223521, 39967243, 98460769, 242561730, 597559646, 1472109847, 3626595728, 8934249307, 22009844973, 54222045921, 133577963318, 329074124992, 810685962909 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
V. M. Zhuravlev, Horizontally-convex polyiamonds and their generating functions, Mat. Pros. 17 (2013), 107-129 (in Russian). See the sequence h(n).
FORMULA
G.f.: -x*(1+x)*(x^3+x^2-1)*(x-1)^2 / ( 1-3*x+4*x^3-x^4-x^5-3*x^6+x^7 ). - R. J. Mathar, Mar 20 2014
MAPLE
g:=proc(n) option remember; local t1;
t1:=[2, 3, 6, 14, 34, 84, 208, 515];
if n <= 7 then t1[n] else
3*g(n-1)-4*g(n-3)+g(n-4)+g(n-5)+3*g(n-6)-g(n-7); fi; end proc;
[seq(g(n), n=1..32)]; # A238823
d:=proc(n) option remember; global g; local t1;
t1:=[0, 1];
if n <= 2 then t1[n] else
g(n-1)-2*d(n-1)-d(n-2); fi; end proc;
[seq(d(n), n=1..32)]; # A238824
p:=proc(n) option remember; global d; local t1;
t1:=[0, 0, 0, 1];
if n <= 4 then t1[n] else
p(n-2)+p(n-3)+2*(d(n-3)+d(n-4)); fi; end proc;
[seq(p(n), n=1..32)]; # A238825
[seq(p(n+3)-p(n+1), n=1..32)]; #A238826
MATHEMATICA
CoefficientList[Series[-(1 + x) (x^3 + x^2 - 1) (x - 1)^2/(1 - 3 x + 4 x^3 - x^4 - x^5 - 3 x^6 + x^7), {x, 0, 40}], x] (* Vincenzo Librandi, Mar 21 2014 *)
PROG
(Magma) m:=40; R<x>:=LaurentSeriesRing(RationalField(), m); Coefficients(R! -x*(1+x)*(x^3+x^2-1)*(x-1)^2 / ( 1-3*x+4*x^3-x^4-x^5-3*x^6+x^7)); // Vincenzo Librandi, Mar 21 2014
CROSSREFS
Sequence in context: A369472 A055729 A317735 * A048211 A098719 A274289
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Mar 08 2014
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 11:07 EDT 2024. Contains 371905 sequences. (Running on oeis4.)