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!)
A084885 Triangular array, read by rows: T(n,k) = denominator of arithmetic derivative of n/k, 1<=k<=n. 3
1, 1, 1, 1, 4, 1, 1, 1, 9, 1, 1, 4, 9, 1, 1, 1, 1, 1, 4, 25, 1, 1, 4, 9, 2, 25, 36, 1, 1, 1, 9, 1, 25, 9, 49, 1, 1, 4, 1, 4, 25, 4, 49, 16, 1, 1, 1, 9, 4, 1, 9, 49, 1, 27, 1, 1, 4, 9, 2, 25, 36, 49, 16, 27, 100, 1, 1, 1, 1, 1, 25, 1, 49, 4, 9, 25, 121, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
Arithmetic derivative of n/k = (k*A003415(n)-n*A003415(k))/k^2;
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] // Denominator;
Table[T[n, k], {n, 1, 12}, {k, 1, n}] // Flatten (* Jean-François Alcover, Sep 26 2021 *)
CROSSREFS
Numerator=A084884, A084887.
Sequence in context: A274006 A203025 A057521 * A360969 A112538 A008477
KEYWORD
nonn,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 02:22 EDT 2024. Contains 372290 sequences. (Running on oeis4.)