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!)
A135162 a(n) = 7^n - 5^n - 3^n + 2^n. Constants are the prime numbers in decreasing order. 1
0, 1, 19, 199, 1711, 13471, 101359, 743359, 5367871, 38381311, 272651599, 1928323519, 13596619231, 95666721151, 672114790639, 4717029615679, 33080299697791, 231867445524991, 1624598513486479, 11379820537307839, 79696895380235551, 558069016466824831, 3907436831415107119 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = 7^n - 5^n - 3^n + 2^n.
a(0)=0, a(1)=1, a(2)=19, a(3)=199, a(n) = 17*a(n-1) - 101*a(n-2) + 247*a(n-3) - 210*a(n-4). - Harvey P. Dale, Dec 13 2013
G.f.: 1/(1-7*x) - 1/(1-5*x) - 1/(1-3*x) + 1/(1-2 x). - Vincenzo Librandi, May 22 2014
E.g.f.: exp(7*x) - exp(5*x) - exp(3*x) + exp(2*x). - G. C. Greubel, Sep 30 2016
EXAMPLE
a(4) = 1711 because 7^4 = 2401, 5^4 = 625, 3^4 = 81, 2^4 = 16 and 2401-625-81+16 = 1711.
MATHEMATICA
Table[7^n-5^n-3^n+2^n, {n, 0, 30}] (* or *) LinearRecurrence[ {17, -101, 247, -210}, {0, 1, 19, 199}, 30] (* Harvey P. Dale, Dec 13 2013 *)
CoefficientList[Series[1/(1 - 7 x) - 1/(1 - 5 x) - 1/(1 - 3 x) + 1/(1 - 2 x), {x, 0, 40}], x] (* Vincenzo Librandi, May 22 2014 *)
PROG
(Magma) [7^n-5^n-3^n+2^n: n in [0..50]]; // Vincenzo Librandi, Dec 14 2010
(PARI) a(n) = 7^n - 5^n - 3^n + 2^n \\ Charles R Greathouse IV, Sep 30 2016
CROSSREFS
Sequence in context: A164890 A066007 A147830 * A185687 A067272 A065582
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, Nov 21 2007
EXTENSIONS
More terms from Vincenzo Librandi, Dec 14 2010
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 18:00 EDT 2024. Contains 371797 sequences. (Running on oeis4.)