login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A119408 Decimal equivalent of the binary string generated by the n X n identity matrix. 0
1, 9, 273, 33825, 17043521, 34630287489, 282578800148737, 9241421688590303745, 1210107565283851686118401, 634134936313486520338360567809 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

FORMULA

The sequence can be generated by the following: 2^((n+1)(n-1)) + 2^((n+1)(n-2)) + ... + 1 where n=2,3,...

EXAMPLE

n=2 [1 0; 0 1] == 1001b=9d

n=3 [1 0 0; 0 1 0; 0 0 1] == 100010001b=273d

n=4 [1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 1] == 1000010000100001b=33825d

MATHEMATICA

For[n=2, n<=10, Print[n, " ", Sum[2^((n+1)(k-1)), {k, 1, n}]]; n++ ]

PROG

(MATLAB) for n = 1:10 bi2de((reshape(eye(n), length(eye(n))^2, 1))') end - Kyle Stern, Dec 14 2011

CROSSREFS

Sequence in context: A197981 A188812 A197768 * A177107 A012234 A012141

Adjacent sequences:  A119405 A119406 A119407 * A119409 A119410 A119411

KEYWORD

nonn,changed

AUTHOR

Lynn R. Purser (lynn.r.purser(AT)boeing.com), Jul 25 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 13:28 EST 2012. Contains 206031 sequences.