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!)
A002699 a(n) = n*2^(2*n-1).
(Formerly M2090 N0825)
8

%I M2090 N0825 #85 Jul 11 2023 12:19:28

%S 0,2,16,96,512,2560,12288,57344,262144,1179648,5242880,23068672,

%T 100663296,436207616,1879048192,8053063680,34359738368,146028888064,

%U 618475290624,2611340115968,10995116277760,46179488366592,193514046488576

%N a(n) = n*2^(2*n-1).

%C Right side of binomial sum Sum(i * binomial(2*n, i), i=1..n) - Yong Kong (ykong(AT)curagen.com), Dec 26 2000

%C Coefficients of shifted Chebyshev polynomials.

%C Starting with offset 1 = 4th binomial transform of [2, 8, 0, 0, 0, ...]. - _Gary W. Adamson_, Jul 21 2009

%C Let P(A) be the power set of an n-element set A and B be the Cartesian product of P(A) with itself. Then a(n) = the sum of the size of the symmetric difference of x and y for every (x,y) of B. - _Ross La Haye_, Jan 04 2013

%C It's the relation [27] with T(n) in the document of Ross. Following the last comment of Ross, A002697 is the similar sequence when replacing "symmetric difference" by "intersection" and A212698 is the similar sequence when replacing "symmetric difference" by union. - _Bernard Schott_, Jan 04 2013

%C If Delta = Symmetric difference, here, X Delta Y and Y Delta X are considered as two distinct Cartesian products, if we want to consider that X Delta Y = X Delta Y is the same Cartesian product, see A002697. - _Bernard Schott_, Jan 15 2013

%D C. Lanczos, Applied Analysis. Prentice-Hall, Englewood Cliffs, NJ, 1956, p. 518.

%D 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.

%D N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H Vincenzo Librandi, <a href="/A002699/b002699.txt">Table of n, a(n) for n = 0..1000</a>

%H Rebecca Bourn and William Q. Erickson, <a href="https://arxiv.org/abs/2307.02652">A palindromic polynomial connecting the earth mover's distance to minuscule lattices of Type A</a>, arXiv:2307.02652 [math.CO], 2023.

%H Ross La Haye, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL12/LaHaye/lahaye5.html">Binary Relations on the Power Set of an n-Element Set</a>, Journal of Integer Sequences, Vol. 12 (2009), Article 09.2.6.

%H C. Lanczos, <a href="/A002457/a002457.pdf">Applied Analysis</a> (Annotated scans of selected pages)

%H Simon Plouffe, <a href="https://arxiv.org/abs/0911.4975">Approximations de séries génératrices et quelques conjectures</a>, Dissertation, Université du Québec à Montréal, 1992; arXiv:0911.4975 [math.NT], 2009.

%H Simon Plouffe, <a href="/A000051/a000051_2.pdf">1031 Generating Functions</a>, Appendix to Thesis, Montreal, 1992

%H <a href="/index/Ch#Cheby">Index entries for sequences related to Chebyshev polynomials.</a>

%H <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (8,-16).

%F a(n) = 2 * A002697(n). - _Bernard Schott_, Jan 04 2013

%F a(n) = A212698(n) - A002697(n)

%F a(n) = 8*a(n-1)-16*a(n-2) with n>1, a(0)=0, a(1)=2. - _Vincenzo Librandi_, Mar 20 2013

%F G.f.: (2*x)/(1 - 4*x)^2. - _Harvey P. Dale_, Jul 28 2021

%F E.g.f.: (exp(4*x) - 1)/2. - _Stefano Spezia_, Aug 04 2022

%p A002699 := n->n*2^(2*n-1);

%p A002699:=2*z/(4*z-1)**2; # conjectured by _Simon Plouffe_ in his 1992 dissertation

%t Table[(n 2^(2 n - 1)), {n, 0, 30}] (* _Vincenzo Librandi_, Mar 20 2013 *)

%t LinearRecurrence[{8,-16},{0,2},30] (* _Harvey P. Dale_, Dec 20 2015 *)

%o (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

%o (PARI) a(n)=n*2^(2*n-1) \\ _Charles R Greathouse IV_, Oct 07 2015

%Y Found in A053125 and A053124.

%Y Cf. A000051, A002457, A002697, A212698.

%K nonn,easy,nice

%O 0,2

%A _N. J. A. Sloane_

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 10:38 EDT 2024. Contains 371791 sequences. (Running on oeis4.)