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!)
A014830 a(1)=1; for n > 1, a(n) = 7*a(n-1) + n. 5
1, 9, 66, 466, 3267, 22875, 160132, 1120932, 7846533, 54925741, 384480198, 2691361398, 18839529799, 131876708607, 923136960264, 6461958721864, 45233711053065, 316635977371473, 2216451841600330 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = (7^(n+1) - 6*n - 7)/36. - Rolf Pleisch, Oct 19 2010
a(1)=1, a(2)=9, a(3)=66; for n > 3, a(n) = 9*a(n-1) - 15*a(n-2) + 7*a(n-3). - Harvey P. Dale, Jul 22 2013
a(n) = Sum_{i=0..n-1} 6^i*binomial(n+1,n-1-i). - Bruno Berselli, Nov 13 2015
G.f.: x / ((1 - x)^2*(1 - 7*x)). - Colin Barker, Jun 03 2020
EXAMPLE
For n=5, a(5) = 1*15 + 6*20 + 6^2*15 + 6^3*6 + 6^4*1 = 3267. - Bruno Berselli, Nov 13 2015
MAPLE
a:=n->sum((7^(n-j)-1)/6, j=0..n): seq(a(n), n=1..19); # Zerinvary Lajos, Jan 15 2007
MATHEMATICA
a[1] = 1; a[n_] := 7*a[n-1]+n; Table[a[n], {n, 10}] (* Zak Seidov, Feb 06 2011 *)
LinearRecurrence[{9, -15, 7}, {1, 9, 66}, 30] (* Harvey P. Dale, Jul 22 2013 *)
PROG
(PARI) Vec(x / ((1 - x)^2*(1 - 7*x)) + O(x^25)) \\ Colin Barker, Jun 03 2020
CROSSREFS
Sequence in context: A037698 A037607 A055148 * A048439 A134432 A098107
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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)