Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A103488
a(n) = 2^(n^2-1).
10
1, 8, 256, 32768, 16777216, 34359738368, 281474976710656, 9223372036854775808, 1208925819614629174706176, 633825300114114700748351602688, 1329227995784915872903807060280344576, 11150372599265311570767859136324180752990208
OFFSET
1,2
COMMENTS
From the classic story: number of grains of wheat on last square of n X n chessboard.
Hankel transform of A059304 and of A084771. - Philippe Deléham, Dec 02 2007
The number of compositions of n^2. - Alois P. Heinz, Feb 22 2020
LINKS
Peter Kagey and William Keehn, Counting Tilings of the n X m Grid, Cylinder, and Torus, J. Int. Seq. (2024) Vol. 27, Art. No. 24.6.1. See section A, pp. 6, 10.
FORMULA
a(n) = A000079(A005563(n-1)). - Michel Marcus, Feb 25 2014
a(n) = A011782(A000290(n)). - Alois P. Heinz, Feb 22 2020
MAPLE
[seq(2^(n^2-1), n=1..14)];
MATHEMATICA
Table[2^(n^2 - 1), {n, 1, 20}] (* Vincenzo Librandi, Feb 25 2014 *)
PROG
(PARI) a(n) = 2^(n^2-1); \\ Joerg Arndt, Feb 23 2014
(Magma) [2^(n^2-1): n in [1..15]]; // Vincenzo Librandi, Feb 25 2014
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Zerinvary Lajos, Jul 30 2006
STATUS
approved