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!)
A165133 a(n) = (2^(n+4)-1)*(2^n+1). 0
30, 93, 315, 1143, 4335, 16863, 66495, 264063, 1052415, 4201983, 16792575, 67139583, 268496895, 1073864703, 4295213055, 17180360703, 68720459775, 274879873023, 1099515559935, 4398054375423, 17592201773055, 70368775634943, 281475039625215 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = 7*a(n-1) -14*a(n-2) +8*a(n-3). G.f.: 3*(10-39*x+28*x^2)/((1-x) * (2*x-1) * (4*x-1)).
a(n) = A000225(n+4) * A000051(n). - Michel Marcus, Jul 17 2013
MATHEMATICA
Table[(2^(n+4)-1)(2^n+1), {n, 0, 30}] (* or *) LinearRecurrence[{7, -14, 8}, {30, 93, 315}, 30] (* Harvey P. Dale, Dec 11 2011 *)
PROG
(Quick Basic) DO: DIM x AS LONG: n = 0: x = ((2 ^ (n + 2)) - 1) * ((2 ^ (n - 2)) + 1): PRINT x: n = n + 1: LOOP
(PARI) a(n)=(2^(n+4)-1)*(2^n+1) \\ Charles R Greathouse IV, Jul 03 2016
CROSSREFS
Sequence in context: A042776 A042778 A031212 * A044217 A044598 A033573
KEYWORD
nonn,easy
AUTHOR
Boris Hostnik (megpplus(AT)siol.net), Sep 04 2009
EXTENSIONS
Fractional values removed by R. J. Mathar, Sep 20 2009
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)