login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A243649
Number of ways six L-tiles can be placed on an n X n square.
2
0, 0, 0, 0, 0, 2, 3161, 147502, 2251309, 19028431, 111126797, 503008566, 1888247929, 6139119795, 17805426945, 47050056470, 115056780421, 263499318031, 570427305781, 1175960541134, 2322552621393, 4416363482851, 8118552261033, 14478163221342, 25121835774173
OFFSET
0,6
LINKS
FORMULA
G.f.: -x^5*(97*x^13 -844*x^12 +2143*x^11 -3665*x^10 +26943*x^9 -113864*x^8 +167176*x^7 +102604*x^6 -568735*x^5 +363954*x^4 +579769*x^3 +106565*x^2 +3135*x +2) / (x-1)^13.
a(n) = (n^12 -12*n^11 -39*n^10 +950*n^9 -815*n^8 -29672*n^7 +69499*n^6 +452518*n^5 -1454446*n^4 -3319216*n^3 +12944320*n^2 +9142512*n -41687280) / 720 for n>=6, a(5) = 2, a(n) = 0 for n<5.
EXAMPLE
a(5) = 2:
._________. ._________.
| |_|_| |_| |_| |_| |_|
|___| |___| | |___|___|
|_| |___|_| |___|_| |_|
| |___| |_| | |_| |___|
|___|_|___| |___|___|_| .
MAPLE
a:= n-> `if`(n<6, [0$5, 2][n+1], ((((((((((((n-12)*n-39)*n+950)
*n-815)*n-29672)*n+69499)*n+452518)*n-1454446)*n
-3319216)*n+12944320)*n+9142512)*n-41687280)/720):
seq(a(n), n=0..40);
CROSSREFS
Column k=6 of A243608.
Sequence in context: A158904 A358177 A175080 * A171154 A099689 A065671
KEYWORD
nonn,easy
AUTHOR
Alois P. Heinz, Jun 08 2014
STATUS
approved