A002699 a(n) = n*2^(2*n-1).
0, 2, 16, 96, 512, 2560, 12288, 57344, 262144, 1179648, 5242880, 23068672, 100663296, 436207616, 1879048192, 8053063680, 34359738368, 146028888064, 618475290624, 2611340115968, 10995116277760, 46179488366592, 193514046488576
Offset: 0
References
- C. Lanczos, Applied Analysis. Prentice-Hall, Englewood Cliffs, NJ, 1956, p. 518.
- A. P. Prudnikov, Yu. A. Brychkov and O.I. Marichev, "Integrals and Series", Volume 1: "Elementary Functions", Chapter 4: "Finite Sums", New York, Gordon and Breach Science Publishers, 1986-1992.
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- Rebecca Bourn and William Q. Erickson, A palindromic polynomial connecting the earth mover's distance to minuscule lattices of Type A, arXiv:2307.02652 [math.CO], 2023.
- Ross La Haye, Binary Relations on the Power Set of an n-Element Set, Journal of Integer Sequences, Vol. 12 (2009), Article 09.2.6.
- C. Lanczos, Applied Analysis (Annotated scans of selected pages)
- Simon Plouffe, Approximations de séries génératrices et quelques conjectures, Dissertation, Université du Québec à Montréal, 1992; arXiv:0911.4975 [math.NT], 2009.
- Simon Plouffe, 1031 Generating Functions, Appendix to Thesis, Montreal, 1992
- Index entries for sequences related to Chebyshev polynomials.
- Index entries for linear recurrences with constant coefficients, signature (8,-16).
Programs
-
Magma
[n*2^(2*n-1): n in [0..30]]; /* or */ I:=[0, 2]; [n le 2 select I[n] else 8*Self(n-1)-16*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Mar 20 2013
-
Maple
A002699 := n->n*2^(2*n-1); A002699:=2*z/(4*z-1)**2; # conjectured by Simon Plouffe in his 1992 dissertation
-
Mathematica
Table[(n 2^(2 n - 1)), {n, 0, 30}] (* Vincenzo Librandi, Mar 20 2013 *) LinearRecurrence[{8,-16},{0,2},30] (* Harvey P. Dale, Dec 20 2015 *)
-
PARI
a(n)=n*2^(2*n-1) \\ Charles R Greathouse IV, Oct 07 2015
Formula
a(n) = 2 * A002697(n). - Bernard Schott, Jan 04 2013
a(n) = 8*a(n-1)-16*a(n-2) with n>1, a(0)=0, a(1)=2. - Vincenzo Librandi, Mar 20 2013
G.f.: (2*x)/(1 - 4*x)^2. - Harvey P. Dale, Jul 28 2021
E.g.f.: (exp(4*x) - 1)/2. - Stefano Spezia, Aug 04 2022
Comments