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!)
A241955 a(n) = 2^(4*n+3) - 1. 3
7, 127, 2047, 32767, 524287, 8388607, 134217727, 2147483647, 34359738367, 549755813887, 8796093022207, 140737488355327, 2251799813685247, 36028797018963967, 576460752303423487, 9223372036854775807, 147573952589676412927, 2361183241434822606847, 37778931862957161709567 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
Jens Kruse Andersen, Table of n, a(n) for n = 0..100
FORMULA
a(n) = 2^(4*n+3) - 1 = A000225(4*n+3) = A013777(n) - 1 = 4*A241888(n) + 3.
Colin Barker, Aug 11 2014: (Start)
a(n) = 17*a(n-1) - 16*a(n-2).
G.f.: (8*x+7) / ((x-1)*(16*x-1)). (End)
MAPLE
A241955:=n->2^(4*n+3)-1: seq(A241955(n), n=0..20); # Wesley Ivan Hurt, Aug 15 2014
MATHEMATICA
Table[2^(4n + 3) - 1, {n, 0, 29}]
2^(4 Range[0, 20] + 3) - 1 (* Wesley Ivan Hurt, Aug 15 2014 *)
PROG
(PARI) vector(40, n, 2^(4*n-1)-1) \\ Derek Orr, Aug 11 2014
(PARI) Vec((8*x+7)/((x-1)*(16*x-1)) + O(x^100)) \\ Colin Barker, Aug 11 2014
(Magma) [2^(4*n+3)-1 : n in [0..20]]; // Wesley Ivan Hurt, Aug 15 2014
CROSSREFS
Sequence in context: A064754 A267249 A025166 * A139291 A274673 A363870
KEYWORD
nonn,easy
AUTHOR
Wassan Letourneur, Aug 09 2014
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 March 28 09:04 EDT 2024. Contains 371240 sequences. (Running on oeis4.)