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!)
A016178 Expansion of 1/((1-7x)(1-9x)). 5
1, 16, 193, 2080, 21121, 206896, 1979713, 18640960, 173533441, 1602154576, 14701866433, 134294124640, 1222488408961, 11099284691056, 100571785292353, 909893629141120, 8222275592839681, 74233110849544336 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (9^(n+1) - 7^(n+1))/2 = A081202(n+1). Binomial transform of A081034. - R. J. Mathar, Sep 18 2008
a(n) = 9*a(n-1) + 7^n, with a(0)=1. - Vincenzo Librandi, Feb 09 2011
a(n) = 16*a(n-1) - 63*a(n-2), n >= 2. - Vincenzo Librandi, Feb 09 2011
MATHEMATICA
Join[{a=1, b=16}, Table[c=16*b-63*a; a=b; b=c, {n, 40}]] (* Vladimir Joseph Stephan Orlovsky, Feb 08 2011 *)
CoefficientList[Series[1/((1-7x)(1-9x)), {x, 0, 30}], x] (* or *) LinearRecurrence[ {16, -63}, {1, 16}, 30] (* Harvey P. Dale, Mar 11 2013 *)
PROG
(PARI) a(n)=(9^n++-7^n)/2 \\ Charles R Greathouse IV, Sep 24 2012
CROSSREFS
Sequence in context: A338100 A218176 A120994 * A081202 A196803 A292785
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)