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

A123887
Expansion of g.f.: (1+x+x^2)/(1-5*x-5*x^2).
2
1, 6, 36, 210, 1230, 7200, 42150, 246750, 1444500, 8456250, 49503750, 289800000, 1696518750, 9931593750, 58140562500, 340360781250, 1992506718750, 11664337500000, 68284221093750, 399742792968750, 2340135070312500, 13699389316406250, 80197621933593750, 469485056250000000
OFFSET
0,2
LINKS
A. Burstein and T. Mansour, Words restricted by 3-letter ..., arXiv:math/0112281 [math.CO], 2001.
A. Burstein and T. Mansour, Words Restricted by 3-Letter Generalized Multipermutation Patterns, Annals. Combin., 7 (2003), 1-14.
Martin Burtscher, Igor Szczyrba, Rafał Szczyrba, Analytic Representations of the n-anacci Constants and Generalizations Thereof, Journal of Integer Sequences, Vol. 18 (2015), Article 15.4.5.
FORMULA
a(0)=1, a(1)=6, a(2)=36, a(n) = 5*a(n-1) + 5*a(n-2) for n>2. - Philippe Deléham, Sep 19 2009
MAPLE
seq(coeff(series((1+x+x^2)/(1-5*x-5*x^2), x, n+1), x, n), n = 0..30); # G. C. Greubel, Aug 07 2019
MATHEMATICA
CoefficientList[Series[(1+x+x^2)/(1-5x-5x^2), {x, 0, 30}], x] (* or *) LinearRecurrence[{5, 5}, {1, 6, 36}, 40] (* Harvey P. Dale, Jan 03 2019 *)
PROG
(PARI) my(x='x+O('x^30)); Vec((1+x+x^2)/(1-5*x-5*x^2)) \\ G. C. Greubel, Aug 07 2019
(Magma) I:=[6, 36]; [1] cat [n le 2 select I[n] else 5*(Self(n-1)+ Self(n-2)): n in [1..30]]; // G. C. Greubel, Aug 07 2019
(Sage)
def A123887_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( (1+x+x^2)/(1-5*x-5*x^2) ).list()
A123887_list(30) # G. C. Greubel, Aug 07 2019
(GAP) a:=[6, 36];; for n in [3..30] do a[n]:=5*(a[n-1]+a[n-2]); od; Concatenation([1], a); # G. C. Greubel, Aug 07 2019
CROSSREFS
Column 6 in A265584.
Sequence in context: A075848 A096979 A269464 * A358539 A105492 A052748
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Nov 20 2006
STATUS
approved