login
A058922
a(n) = n*2^n - 2^n = 2^n*(n-1).
10
0, 4, 16, 48, 128, 320, 768, 1792, 4096, 9216, 20480, 45056, 98304, 212992, 458752, 983040, 2097152, 4456448, 9437184, 19922944, 41943040, 88080384, 184549376, 385875968, 805306368, 1677721600, 3489660928, 7247757312, 15032385536, 31138512896, 64424509440, 133143986176
OFFSET
1,2
COMMENTS
A hierarchical sequence (S(W'2{2}*c) - see A059126).
The score associated with a 2^n-tile in Gabriele Cirulli's popular video game "2048", if only 2's appear. - Johann Peters, Oct 17 2025
For n>=2, also the number of minimum connected dominating sets in the (n-1)-necklace graph. - Eric W. Weisstein, Feb 17 2026
LINKS
Gabriele Cirulli, Play 2048.
Jonas Wallgren, Hierarchical sequences, 2001.
Eric Weisstein's World of Mathematics, Minimum Dominating Set.
Eric Weisstein's World of Mathematics, Necklace Graph.
FORMULA
a(n) = -det(M(n+1)) where M(n) is the n X n matrix with m(i,i)=1, m(i,j)=-i/j for i != j. - Benoit Cloitre, Feb 01 2003
With offset 0, this is 4n*2^(n-1), the binomial transform of 4n. - Paul Barry, May 20 2003
a(1)=0, a(n) = 2*a(n-1) + 2^n for n>1. - Philippe Deléham, Apr 20 2009
a(n) = A000337(n) - 1. - Omar E. Pol, Feb 22 2010
From R. J. Mathar, Mar 01 2010: (Start)
a(n)= 4*a(n-1) - 4*a(n-2).
G.f.: 4*x^2/(2*x-1)^2. (End)
From Amiram Eldar, Jan 12 2021: (Start)
Sum_{n>=2} 1/a(n) = log(2)/2.
Sum_{n>=2} (-1)^n/a(n) = log(3/2)/2. (End)
From Enrique Navarrete, Dec 31 2025: (Start)
a(n) = Sum_{k=1..n} A001787(k) - 1.
a(n) = A291526(n+1) - A291526(n).
E.g.f.: 1 + (2*x - 1)*exp(2*x). (End)
MATHEMATICA
Table[n*2^n-2^n, {n, 100}] (* Vladimir Joseph Stephan Orlovsky, Jan 15 2011 *)
PROG
(PARI) a(n) = { n*2^n - 2^n } \\ Harry J. Smith, Jun 24 2009
(Haskell)
a058922 n = (n - 1) * 2 ^ n
a058922_list = zipWith (*) [0..] $ tail a000079_list
-- Reinhard Zumkeller, Jul 11 2014
CROSSREFS
A001787(n) = a(n+1)/4. A073346(n, n-2) = a(n-2).
Cf. A000337. - Omar E. Pol, Feb 22 2010
Sequence in context: A210066 A131126 A159964 * A215723 A034918 A119003
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jan 12 2001
STATUS
approved