The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A024024 a(n) = 3^n - n. 14
1, 2, 7, 24, 77, 238, 723, 2180, 6553, 19674, 59039, 177136, 531429, 1594310, 4782955, 14348892, 43046705, 129140146, 387420471, 1162261448, 3486784381, 10460353182, 31381059587, 94143178804, 282429536457, 847288609418 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: (1-3*x+4*x^2)/((1-3*x)*(1-x)^2). - Vincenzo Librandi, Mar 06 2013
a(n) = 5*a(n-1) - 7*a(n-2) + 3*a(n-3). - Vincenzo Librandi, Mar 06 2013
MATHEMATICA
Table[3^n - n, {n, 0, 40}] (* or *) CoefficientList[Series[(1 - 3 x + 4 x^2)/((1 - 3 x)(1 - x)^2), {x, 0, 30}], x] (* Vincenzo Librandi, Mar 06 2013 *)
PROG
(Magma) [3^n - n: n in [0..35]]; // Vincenzo Librandi, May 13 2011
(Magma) I:=[1, 2, 7]; [n le 3 select I[n] else 5*Self(n-1)-7*Self(n-2)+3*Self(n-3): n in [1..30]]; // Vincenzo Librandi, Mar 06 2013
(PARI) a(n)=3^n-n \\ Charles R Greathouse IV, Sep 24 2015
CROSSREFS
Sequence in context: A341803 A272483 A129020 * A027122 A132788 A109682
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 May 21 01:24 EDT 2024. Contains 372720 sequences. (Running on oeis4.)