The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A016184 Expansion of 1/((1-7x)(1-12x)). 1
1, 19, 277, 3667, 46405, 573667, 7001653, 84843379, 1023885349, 12326977795, 148206208789, 1780451832211, 21379263273733, 256648048295203, 3080454802615285, 36970205192893363, 443675695245289957 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (12^(n+1) - 7^(n+1))/5. - Lambert Klasen (lambert.klasen(AT)gmx.net), Feb 06 2005
a(n) = 12*a(n-1) + 7^n, a(0)=1. - Vincenzo Librandi, Feb 09 2011
a(n) = 19*a(n-1) - 84*a(n-2), a(0)=1, a(1)=19. - Vincenzo Librandi, Feb 09 2011
MATHEMATICA
Join[{a=1, b=19}, Table[c=19*b-84*a; a=b; b=c, {n, 40}]] (* Vladimir Joseph Stephan Orlovsky, Feb 14 2011 *)
CoefficientList[Series[1/((1-7x)(1-12x)), {x, 0, 20}], x] (* or *) LinearRecurrence[ {19, -84}, {1, 19}, 20] (* Harvey P. Dale, Jul 09 2018 *)
PROG
(PARI) Vec(1/((1-7*x)*(1-12*x))+O(x^99)) \\ Charles R Greathouse IV, Sep 26 2012
CROSSREFS
Sequence in context: A322539 A199819 A016187 * A197742 A322628 A322053
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 May 13 19:11 EDT 2024. Contains 372522 sequences. (Running on oeis4.)