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!)
A291557 a(n) = 23*2^n - 1. 2
22, 45, 91, 183, 367, 735, 1471, 2943, 5887, 11775, 23551, 47103, 94207, 188415, 376831, 753663, 1507327, 3014655, 6029311, 12058623, 24117247, 48234495, 96468991, 192937983, 385875967, 771751935, 1543503871, 3087007743, 6174015487, 12348030975, 24696061951, 49392123903, 98784247807, 197568495615, 395136991231, 790273982463, 1580547964927 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
An easy description is: starting from a(0)=22, a(n)=number of integers to be skipped to get a(n+1); i.e., from a(0)=22, skip 22 integers to get a(1)=45; then skip 45 integers to get a(2)=91, etc.
Note that if the initial condition is a(0)=0, a(n)=A000225; if a(0)=2, a(n)=A083329; if a(0)=4, a(n)=A153894, etc.
LINKS
FORMULA
From Chai Wah Wu, Mar 04 2018: (Start)
a(n) = 3*a(n-1) - 2*a(n-2) for n > 1.
G.f.: (22 - 21*x)/((1 - x)*(1 - 2*x)). (End)
MAPLE
A291557:=n->23*2^n-1: seq(A291557(n), n=0..50); # Wesley Ivan Hurt, Oct 05 2017
MATHEMATICA
23*2^Range[0, 40]-1 (* or *) LinearRecurrence[{3, -2}, {22, 45}, 40] (* Harvey P. Dale, Jul 20 2018 *)
PROG
(PARI) a(n) = 23*2^n - 1; \\ Altug Alkan, Mar 04 2018
CROSSREFS
Sequence in context: A041954 A041952 A195149 * A165309 A041960 A041958
KEYWORD
nonn,easy
AUTHOR
Enrique Navarrete, Aug 26 2017
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 07:08 EDT 2024. Contains 371698 sequences. (Running on oeis4.)