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!)
A129501 A103994 * A115361. 4
1, 2, 1, -1, 0, 1, 3, 2, 0, 1, -1, 0, 0, 0, 1, -2, -1, 2, 0, 0, 1, -1, 0, 0, 0, 0, 0, 1, 4, 3, 0, 2, 0, 0, 0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1, -2, -1, 0, 0, 2, 0, 0, 0, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -3, -2, 3, -1, 0, 2, 0, 0, 0, 0, 0, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Row sums = A129502: (1, 3, 0, 6, 0, 0, 0, 10, 0, 0, ...).
LINKS
FORMULA
A103994 * A115361 as infinite lower triangular matrices.
T(n,k) = A317673(n/k) for k | n, T(n,k) = 0 otherwise. - Andrew Howroyd, Aug 03 2018
EXAMPLE
First few rows of the triangle are:
1;
2, 1;
-1, 0, 1;
3, 2, 0, 1;
-1, 0, 0, 0, 1;
-2, -1, 2, 0, 0, 1;
-1, 0, 0, 0, 0, 0, 1;
4, 3, 0, 2, 0, 0, 0, 1;
0, 0, -1, 0, 0, 0, 0, 0, 1;
...
MATHEMATICA
b[n_] := Module[{e}, Sum[e = IntegerExponent[d, 2]; If[d == 2^e, MoebiusMu[n/d] Binomial[2 + e, 2], 0], {d, Divisors[n]}]];
T[n_, k_] := If[Divisible[n, k], b[n/k], 0];
Table[T[n, k], {n, 1, 13}, {k, 1, n}] // Flatten (* Jean-François Alcover, Sep 24 2019 *)
PROG
(PARI) T(n, k)={ if(n%k, 0, sumdiv(n/k, d, my(e=valuation(d, 2)); if(d==1<<e, moebius(n/(k*d))*binomial(2+e, 2), 0))) } \\ Andrew Howroyd, Aug 03 2018
CROSSREFS
Column 1 is A317673 (Moebius transform of A129502).
Row sums are A129502.
Sequence in context: A144409 A131257 A105806 * A129353 A174295 A158511
KEYWORD
tabl,sign
AUTHOR
Gary W. Adamson, Apr 17 2007
EXTENSIONS
Terms a(56) and beyond from Andrew Howroyd, Aug 03 2018
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 23 13:51 EDT 2024. Contains 371914 sequences. (Running on oeis4.)