|
|
A171480
|
|
a(n) = 6*a(n-1) - 8*a(n-2) + 4 for n > 1; a(0) = 1, a(1) = 9.
|
|
1
|
|
|
1, 9, 50, 232, 996, 4124, 16780, 67692, 271916, 1089964, 4364460, 17467052, 69886636, 279583404, 1118407340, 4473776812, 17895402156, 71582198444, 286329973420, 1145322252972, 4581293730476, 18325184359084, 73300756310700
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
0,2
|
|
COMMENTS
|
Inverse binomial transform of A016273.
|
|
LINKS
|
|
|
FORMULA
|
a(n) = (25*4^n - 27*2^n + 8)/6.
G.f.: (1+x)^2/((1-x)*(1-2*x)*(1-4*x)).
|
|
PROG
|
(PARI) {m=23; v=concat([1, 9], vector(m-2)); for(n=3, m, v[n]=6*v[n-1]-8*v[n-2]+4); v}
|
|
CROSSREFS
|
|
|
KEYWORD
|
nonn,easy
|
|
AUTHOR
|
|
|
STATUS
|
approved
|
|
|
|