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!)
A143255 Triangle read by rows, A128407 * A126988; 1<=k<=n. 1
1, -2, -1, -3, 0, -1, 0, 0, 0, 0, -5, 0, 0, 0, -1, 6, 3, 2, 0, 0, 1, -7, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 5, 0, 0, 2, 0, 0, 0, 0, 1, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 14, 7, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Left border = A055615: (1, -2, -3, 0, -5, 6, -7,...).
Right border = A008683, mu(n).
Row sums = A063441: (1, -3, -4, 0, -6, 12, 8,...).
LINKS
FORMULA
Triangle read by rows, A128407 * A126988; 1<=k<=n
t(n,m)=MoebiusMu[n]*A126988(n,m); t(n,m)=MoebiusMu[n]*If[m == 1, n, If[Mod[n, m] == 0, n/m, 0]]. - Roger L. Bagula, Sep 06 2008
EXAMPLE
First few rows of the triangle =
1;
-2, -1;
-3, 0, -1;
0, 0, 0, 0;
-5, 0, 0, 0, -1;
6, 3, 2, 0, 0, 1;
-7, 0, 0, 0, 0, 0, -1;
0, 0, 0, 0, 0, 0, 0, 0;
0, 0, 0, 0, 0, 0, 0, 0, 0;
10, 5, 0, 0, 2, 0, 0, 0, 0, 1;
...
MATHEMATICA
t[n_, m_] = MoebiusMu[n]*If[m == 1, n, If[Mod[n, m] == 0, n/m, 0]]; Table[Table[t[n, m], {m, 1, n}], {n, 1, 10}]; Flatten[%] - Roger L. Bagula, Sep 06 2008
CROSSREFS
Cf. A128988.
Sequence in context: A202034 A323881 A062963 * A127139 A309103 A166139
KEYWORD
tabl,sign
AUTHOR
Gary W. Adamson, Aug 02 2008
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 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)