A168368 Number of stable connected piles of n bricks.
0, 1, 1, 2, 4, 7, 12, 21
Offset: 0
Examples
Following is a graphic depiction of the stable connected piles of bricks for n = 0 to 4 ordered by increasing height (all piles of a given height within curly braces) and each variant of a given pattern within square brackets, where C(k, i) is k choose i (binomial coefficient), F_n is n-th Fibonacci number [F_n = Sum_{k+i = n-1, i <= k} C(k, i)]. Also, the piles of heights 1 and 2 are grouped within parentheses (since they give the n-th Fibonacci number). For n = 0, the following 0 [F_0] piles: ( { } ) For n = 1, the following 1 [F_1 = C(0, 0) = 1] pile: ( { |=| } ) For n = 2, the following 1 [F_2 = C(1, 0) = 1] pile: ( { |=|=| } ) For n = 3, the following 2 [F_3 = C(2, 0) + C(1, 1) = 2] piles: ( { ....... } & { .|=|. } ) ( { |=|=|=| } & { |=|=| } ) For n = 4, the following 4 [F_4 + 1 = (C(3, 0) + C(2, 1)) + 1 = 3 + 1] piles (where the brick on the third level is necessary for stability): ( { ......... } & { ....... & ....... } ) & { .|=|. } ( { ......... } & { .|=|... & ...|=|. } ) & { |=|=| } ( { |=|=|=|=| } & { |=|=|=| & |=|=|=| } ) & { .|=|. }
Links
- Daniel Forgues, Graphic depictions for larger n
- Mike Paterson et al., Maximum Overhang
- Eric Weisstein's World of Mathematics, Fibonacci Number
- Eric Weisstein's World of Mathematics, Tribonacci Number
- Eric Weisstein's World of Mathematics, Fibonacci n-Step Number
Extensions
Edited by Daniel Forgues, Nov 29 2009, Dec 13 2009
Comments