[go: up one dir, main page]

login
Revision History for A254127 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
The number of tilings of an n X n rectangle using integer length rectangles with at least one side of length 1, i.e., tiles are of size (1 X i) or (i X 1) with 1<=i<=n.
(history; published version)
#28 by N. J. A. Sloane at Fri May 31 14:42:54 EDT 2024
STATUS

reviewed

approved

#27 by Michel Marcus at Fri May 31 11:17:07 EDT 2024
STATUS

proposed

reviewed

#26 by Robert C. Lyons at Fri May 31 11:12:12 EDT 2024
STATUS

editing

proposed

#25 by Robert C. Lyons at Fri May 31 11:12:09 EDT 2024
PROG

# SAGE

(SageMath)

def matrix_entry(L1, L2, n):

.... tally=0

.... for i in range(n-1):

........ if (not i in L1) and (not i in L2) and (not i+1 in L1) and (not i+1 in L2):

............ tally+=1

.... return 2^tally

.... index_set={}

.... counter=0

.... for C in Combinations(n):

........ index_set[counter]=C

........ counter+=1

.... current_v=[0]*counter

.... current_v[0]=1

.... for t in range(n):

........ new_v=[0]*counter

........ for i in range(counter):

............ for j in range(counter):

................ new_v[i]+=current_v[j]*matrix_entry(index_set[iI], index_set[j], n)

........ current_v=new_v

.... return current_v[0]

for n in range(0, 10):

print(a(n), end=', ')

STATUS

approved

editing

#24 by OEIS Server at Fri Jan 30 11:11:47 EST 2015
LINKS

Steve Butler, <a href="/A254127/b254127_1.txt">Table of n, a(n) for n = 0..15</a>

#23 by Alois P. Heinz at Fri Jan 30 11:11:47 EST 2015
STATUS

editing

approved

Discussion
Fri Jan 30
11:11
OEIS Server: Installed new b-file as b254127.txt.  Old b-file is now b254127_1.txt.
#22 by Alois P. Heinz at Fri Jan 30 10:18:39 EST 2015
CROSSREFS

Main diagonal of A254414.

#21 by Alois P. Heinz at Fri Jan 30 10:17:30 EST 2015
LINKS

Steve Butler, <a href="/A254127/b254127_1.txt">Table of n, a(n) for n = 10..1415</a>

#20 by Alois P. Heinz at Fri Jan 30 10:16:42 EST 2015
DATA

1, 1, 7, 257, 50128, 50796983, 264719566561, 7063448084710944, 963204439792722969647, 670733745303300958404439297, 2384351527902618144856749327661056, 43263422878945294225852497665519673400479, 4006622856873663241294794301627790673728956619649

OFFSET

1,2

0,3

EXTENSIONS

a(0)=1 prepended by Alois P. Heinz, Jan 30 2015

STATUS

approved

editing

#19 by N. J. A. Sloane at Tue Jan 27 00:56:50 EST 2015
STATUS

proposed

approved