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!)
A048477 a(n) = T(5,n), array T given by A048472. 2
1, 7, 25, 73, 193, 481, 1153, 2689, 6145, 13825, 30721, 67585, 147457, 319489, 688129, 1474561, 3145729, 6684673, 14155777, 29884417, 62914561, 132120577, 276824065, 578813953, 1207959553, 2516582401, 5234491393, 10871635969, 22548578305, 46707769345 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
n-th difference of a(n), a(n-1), ..., a(0) is (6, 12, 18, ...).
LINKS
FORMULA
a(n) = 6*n * 2^(n-1) + 1.
G.f.: (1 + 2*x - 2*x^2) / ((1 - x) * (1 - 2*x)^2).
a(n) = 5*a(n-1)-8*a(n-2)+4*a(n-3) for n>2. - Colin Barker, Feb 18 2016
PROG
(Magma) [6*n * 2^(n-1) + 1: n in [0..30]]; // Vincenzo Librandi, Sep 23 2011
(PARI) {a(n) = if( n<0, 0, 3 * n * 2^n + 1)}; /* Michael Somos, May 13 2014 */
(PARI) Vec((1+2*x-2*x^2)/((1-x)*(1-2*x)^2) + O(x^40)) \\ Colin Barker, Feb 18 2016
CROSSREFS
Cf. A048472.
Sequence in context: A155221 A213569 A299269 * A294837 A117152 A155281
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 16 10:45 EDT 2024. Contains 371709 sequences. (Running on oeis4.)