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

A221909
a(n) = 7^n + 7*n.
4
1, 14, 63, 364, 2429, 16842, 117691, 823592, 5764857, 40353670, 282475319, 1977326820, 13841287285, 96889010498, 678223072947, 4747561510048, 33232930569713, 232630513987326, 1628413597910575, 11398895185373276, 79792266297612141, 558545864083284154, 3909821048582988203
OFFSET
0,2
FORMULA
G.f.: (1+5*x-48*x^2)/((1-x)^2*(1-7*x)).
a(n) = 9*a(n-1) - 15*a(n-2) + 7*a(n-3).
a(n) = A176972(n) - 1.
E.g.f.: exp(x)*(exp(6*x) + 7*x). - Elmo R. Oliveira, Sep 10 2024
MATHEMATICA
Table[(7^n + 7 n), {n, 0, 30}] (* or *) CoefficientList[Series[(1 + 5 x - 48 x^2)/((1 - x)^2 (1 - 7 x)), {x, 0, 30}], x]
PROG
(Magma) [7^n + 7*n: n in [0..30]]; /* or */ I:=[1, 14, 63]; [n le 3 select I[n] else 9*Self(n-1)-15*Self(n-2)+7*Self(n-3): n in [1..30]];
(PARI) a(n)=7^n+7*n \\ Charles R Greathouse IV, Apr 18 2013
CROSSREFS
Sequence in context: A255499 A229739 A339136 * A229738 A239856 A214483
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 02 2013
STATUS
approved