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!)
A054527 Triangle read by rows: T(n,k) = Moebius mu(k) (n >= 1, 1 <= k <= n). 2
1, 1, -1, 1, -1, -1, 1, -1, -1, 0, 1, -1, -1, 0, -1, 1, -1, -1, 0, -1, 1, 1, -1, -1, 0, -1, 1, -1, 1, -1, -1, 0, -1, 1, -1, 0, 1, -1, -1, 0, -1, 1, -1, 0, 0, 1, -1, -1, 0, -1, 1, -1, 0, 0, 1, 1, -1, -1, 0, -1, 1, -1, 0, 0, 1, -1, 1, -1, -1, 0, -1, 1, -1, 0, 0, 1, -1, 0, 1, -1, -1, 0, -1, 1, -1, 0, 0, 1, -1, 0, -1, 1, -1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Row sums = Mertens sequence = A002321; right border = mu(n) = A008683. - Gary W. Adamson, Jan 17 2007
M * Q as infinite lower triangular matrices; M = (1; 1, 1; 1, 1, 1; ...); Q = mu(n) in the main diagonal and the rest zeros. - Gary W. Adamson, Jan 17 2007
Terms in rows of this table appears to be the values of the minors in the first expansion of the determinant of the Redheffer matrix. - Mats Granvik, Aug 24 2008
LINKS
EXAMPLE
First few rows of the triangle:
1;
1, -1;
1, -1, -1;
1, -1, -1, 0;
1, -1, -1, 0, -1;
1, -1, -1, 0, -1, 1;
...
MATHEMATICA
Table[#[[1 ;; n]], {n, Length[#]}] &@ Array[MoebiusMu, 12] // Flatten (* Michael De Vlieger, Feb 05 2022 *)
PROG
(Haskell)
import Data.List (inits)
a054527 n k = a054527_tabl !! (n-1) !! (k-1)
a054527_row n = a054527_tabl !! (n-1)
a054527_tabl = tail $ inits a008683_list
-- Reinhard Zumkeller, Sep 03 2015
CROSSREFS
Sequence in context: A279693 A368992 A334465 * A137794 A357731 A336546
KEYWORD
sign,tabl
AUTHOR
N. J. A. Sloane, Apr 09 2000
EXTENSIONS
Edited by N. J. A. Sloane, Jul 03 2008 at the suggestion of R. J. Mathar
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 24 14:54 EDT 2024. Contains 371960 sequences. (Running on oeis4.)