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!)
A014831 a(1)=1; for n>1, a(n) = 8*a(n-1)+n. 7
1, 10, 83, 668, 5349, 42798, 342391, 2739136, 21913097, 175304786, 1402438299, 11219506404, 89756051245, 718048409974, 5744387279807, 45955098238472, 367640785907793, 2941126287262362, 23529010298098915, 188232082384791340, 1505856659078330741 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = (8^(n+1)-7*n-8)/49. - Rolf Pleisch, Oct 21 2010
a(n) = Sum_{i=0..n-1} 7^i*binomial(n+1,n-1-i). [Bruno Berselli, Nov 13 2015]
From Colin Barker, Jun 03 2020: (Start)
G.f.: x / ((1 - x)^2*(1 - 8*x)).
a(n) = 10*a(n-1) - 17*a(n-2) + 8*a(n-3) for n>3.
(End)
EXAMPLE
For n=5, a(5) = 1*15 + 7*20 + 7^2*15 + 7^3*6 + 7^4*1 = 5349. [Bruno Berselli, Nov 13 2015]
MAPLE
a:=n->sum((8^(n-j)-1)/7, j=0..n): seq(a(n), n=1..19); # Zerinvary Lajos, Jan 15 2007
a:= n-> (Matrix ([[1, 0, 1], [1, 1, 1], [0, 0, 8]])^n)[2, 3]: seq (a(n), n=1..25); # Alois P. Heinz, Aug 06 2008
MATHEMATICA
Table[(8^(n + 1) - 7 n - 8)/49, {n, 1, 25}] (* Bruno Berselli, Nov 13 2015 *)
PROG
(PARI) Vec(x / ((1 - x)^2*(1 - 8*x)) + O(x^25)) \\ Colin Barker, Jun 03 2020
CROSSREFS
Sequence in context: A037699 A037608 A055149 * A048440 A226202 A271557
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 18:17 EDT 2024. Contains 371962 sequences. (Running on oeis4.)