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!)
A272690 a(n) = 22*Sum_{i=0..n-2} 46^i*2^(n-2-i) + 2^(n-1). 2
1, 24, 1060, 48672, 2238736, 102981504, 4737148480, 217908828672, 10023806116096, 461095081334784, 21210373741388800, 975677192103862272, 44881150836777619456, 2064532938491770404864, 94968515170621438443520, 4368551697848586168041472, 200953378101034963729186816 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This sequence gives a lower bound on the number of ways of combining n 2 X 4 LEGO blocks.
The formula as given was found at the LEGO Company in 1974 and the numbers a(2), a(3), a(6) were used in communication until the emergence of A112389. - Søren Eilers, Aug 02 2018
LINKS
S. Eilers, The LEGO counting problem, Amer. Math. Monthly, 123 (May 2016), 415-426.
Jørgen Kirk Kristiansen, Taljonglering med klodser - eller talrige klodser, Klodshans 1974 [In Danish].
Fabien Pazuki, Combinatoire des briques LEGO, Images des Mathématiques, CNRS, 2016. [In French]
FORMULA
From Colin Barker, May 31 2016: (Start)
a(n) = 2^(n-2)*(23+23^n)/23.
a(n) = 48*a(n-1) - 92*a(n-2) for n > 2.
G.f.: x*(1-24*x) / ((1-2*x)*(1-46*x)).
(End)
First formula follows by simplifying the formula in the definition, and the other two follow immediately. - Rick L. Shepherd, Jun 02 2016
Since there are 46 ways to attach one such brick on top of another, 2 of which are self-symmetric, the number of buildings with n 2 X 4 LEGO bricks of maximal height becomes a(n) = (46^(n-1) + 2^(n-1))/2 when adjusted for rotation in the XY-plane. That this is the same as the original formula found at LEGO follows by isolating a finite geometric series. - Søren Eilers, Aug 02 2018
MAPLE
t1:=n->22*add(46^i*2^(n-2-i), i=0..n-2)+2^(n-1);
t2:=[seq(t1(n), n=1..20)];
MATHEMATICA
Table[22*Sum[46^k * 2^(n-k-2), {k, 0, n-2}] + 2^(n-1), {n, 1, 25}] (* G. C. Greubel, May 31 2016 *)
PROG
(Ruby)
def A272690(n)
22 * (0..n - 2).inject(0){|s, i| s + 46 ** i * 2 ** (n - 2 - i)} + 2 ** (n - 1)
end # Seiichi Manyama, May 31 2016
(PARI) A272690(n) = 2^(n - 2)*(1 + 23^(n - 1)) \\ Rick L. Shepherd, Jun 02 2016
CROSSREFS
Sequence in context: A129622 A309421 A344095 * A112011 A112010 A278650
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, May 31 2016
STATUS
approved

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 18 06:24 EDT 2024. Contains 371769 sequences. (Running on oeis4.)