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!)
A084884 Triangular array, read by rows: T(n,k) = numerator of arithmetic derivative of n/k, 1<=k<=n. 3
0, 1, 0, 1, -1, 0, 4, 1, 8, 0, 1, -3, -2, -1, 0, 5, 1, 1, -1, 19, 0, 1, -5, -4, -3, -2, -29, 0, 12, 4, 28, 1, 52, 8, 76, 0, 6, 3, 1, -3, 21, -1, 33, -15, 0, 7, 1, 11, -3, 1, -2, 39, -1, 1, 0, 1, -9, -8, -5, -6, -49, -4, -31, -19, -67, 0, 16, 5, 4, 1, 68, 1, 100, -1, 8, 19, 164 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,7
COMMENTS
Arithmetic derivative of n/k = (k*A003415(n)-n*A003415(k))/k^2;
T(n,1) = A003415(n); T(n,n) = 0.
LINKS
Eric Weisstein's World of Mathematics, Quotient Rule.
EXAMPLE
......................... 0
................... 1 ........ 0
............... 1 .... -1/4 ....... 0
........... 4 ..... 1 ...... 8/9 ....... 0
....... 1 ... -3/4 ... -2/9 ...... -1 ...... 0
... 5 ..... 1 ..... 1 ..... -1/4 .... 19/25 .... 0
1 .. -5/4 ... -4/9 ... -3/2 ... -2/25 ... -29/36 ... 0.
MATHEMATICA
ader[n_Integer] := ader[n] = Switch[n, 0|1, 0, _, If[PrimeQ[n], 1, Sum[Module[{p, e}, {p, e} = pe; n e/p], {pe, FactorInteger[n]}]]];
ader[Rational[n_, k_]] := (ader[n] k - ader[k] n)/k^2;
T[n_, k_] := ader[n/k] // Numerator;
Table[T[n, k], {n, 1, 12}, {k, 1, n}] // Flatten (* Jean-François Alcover, Sep 26 2021 *)
CROSSREFS
Denominator=A084885, A084886, A084890.
Sequence in context: A349147 A262361 A294791 * A329998 A143320 A089146
KEYWORD
sign,tabl
AUTHOR
Reinhard Zumkeller, Jun 10 2003
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 May 6 21:01 EDT 2024. Contains 372297 sequences. (Running on oeis4.)