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!)
A206706 Triangle read by rows, T(n,k) n>=0, 0<=k<=n; T(0,0) = -1 and for n > 0 T(n,k) = moebius(n,k+1) - moebius(n,k) where moebius(n,k) = mu(floor(n/k)) if k<>0 and k divides n, 0 otherwise; mu=A008683. 2
-1, 1, -1, -1, 2, -1, -1, 1, 1, -1, 0, -1, 1, 1, -1, -1, 1, 0, 0, 1, -1, 1, -2, 0, 1, 0, 1, -1, -1, 1, 0, 0, 0, 0, 1, -1, 0, 0, 0, -1, 1, 0, 0, 1, -1, 0, 0, -1, 1, 0, 0, 0, 0, 1, -1, 1, -2, 1, 0, -1, 1, 0, 0, 0, 1, -1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, -1, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
This is a variant of Paul D. Hanna's A123706 which uses a definition given by Mats Granvik. It adds the column T(n,0) = mu(n) at the left hand side of the triangle.
The value T(0,0) was set to -1 to make the triangle invertible as a matrix with uniform signs of the entries of the inverse.
LINKS
EXAMPLE
[ 0] -1,
[ 1] 1, -1,
[ 2] -1, 2, -1,
[ 3] -1, 1, 1, -1,
[ 4] 0, -1, 1, 1, -1,
[ 5] -1, 1, 0, 0, 1, -1,
[ 6] 1, -2, 0, 1, 0, 1, -1,
[ 7] -1, 1, 0, 0, 0, 0, 1, -1,
[ 8] 0, 0, 0, -1, 1, 0, 0, 1, -1,
[ 9] 0, 0, -1, 1, 0, 0, 0, 0, 1, -1,
The inverse of this triangle as a matrix begins
[-1, 0, 0, 0, 0, 0, 0]
[-1, -1, 0, 0, 0, 0, 0]
[-1, -2, -1, 0, 0, 0, 0]
[-1, -3, -1, -1, 0, 0, 0]
[-1, -4, -2, -1, -1, 0, 0]
[-1, -5, -2, -1, -1, -1, 0]
[-1, -6, -3, -2, -1, -1, -1]
MAPLE
with(numtheory): A206706 := proc(n, k) local moebius;
moebius := (n, k) -> `if`(k<>0 and irem(n, k) = 0, mobius(iquo(n, k)), 0);
moebius(n, k+1) - moebius(n, k) end:
MATHEMATICA
mu[n_, k_] := If[k != 0 && Divisible[n, k], MoebiusMu[n/k], 0];
T[0, 0] = -1; T[n_, k_] /; 0 <= k <= n := mu[n, k+1] - mu[n, k];
Table[T[n, k], {n, 0, 11}, {k, 0, n}] // Flatten (* Jean-François Alcover, Jul 12 2019 *)
PROG
(Sage)
def mur(n, k): return moebius(n//k) if k != 0 and n%k == 0 else 0
def A206706(n, k) : return -1 if n==0 and k==0 else mur(n, k+1) - mur(n, k)
CROSSREFS
Sequence in context: A169987 A267611 A178666 * A302354 A000164 A330261
KEYWORD
sign,tabl
AUTHOR
Peter Luschny, Feb 11 2012
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 26 12:36 EDT 2024. Contains 371997 sequences. (Running on oeis4.)