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!)
A256275 Decimal equivalent of the binary string generated by the negation of the n X n identity matrix. 1
0, 6, 238, 31710, 16510910, 34089189246, 280371153272574, 9205322385119247870, 1207744073945406663293950, 633515663914742881158342637566, 1328903397983747395279166325955489790, 11149011303623843458013522930838119932485630, 374121581799746201009538413109130562019709006364670 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = 2^(n^2) - (1 + (2^((n+1)*(n-1)) + 2^((n+1)*(n-2) + .. 1))).
a(n) = 2^(n^2) - (1 + A119408(n)).
a(n) = ((2^(n^2) - 2)*(2^n - 1))/(2*2^n - 1)
EXAMPLE
For n = 3, a(3) = 2^(3^2) - (1 + (2^((3+1)*(3-1)) + 2^((3+1)*(3-2)) + 2^((3+1)*(3-3)))) = 2^9 - (1 + (2^8 + 2^4 + 2^0)) = 512 - (1 + (256 + 16 + 1)) = 512 - 274 = 238.
MAPLE
seq((2^(n^2)-2)*(1-2^n)/(1-2^(n+1)), n=1..26); # Robert Israel, Jun 02 2015
MATHEMATICA
Table[2^(n^2) - (1 + Sum[2^((n + 1) (n - k)), {k, n}]), {n, 12}] (* Michael De Vlieger, Jun 02 2015 *)
PROG
(Mathcad) 2^(n^2) - (1 + Summation[k=1..n (2^((n+1).(n-k)))])
(Magma) [(2^(n^2)-2)*(1-2^n)/(1-2^(n+1)): n in [1..15]]; // Vincenzo Librandi, Jun 03 2015
CROSSREFS
Cf. A119408.
Sequence in context: A362733 A266657 A145180 * A235346 A077231 A172965
KEYWORD
nonn
AUTHOR
Stuart Bruff, Jun 02 2015
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 25 09:49 EDT 2024. Contains 371967 sequences. (Running on oeis4.)