A189553 Irregular triangle in which row n contains numbers x such that x'=n, where x' denotes the arithmetic derivative (A003415).
4, 6, 9, 10, 15, 14, 21, 25, 8, 35, 22, 33, 49, 26, 12, 39, 55, 65, 77, 34, 51, 91, 18, 38, 57, 85, 121, 20, 95, 119, 143, 46, 69, 133, 169, 27, 115, 187, 161, 209, 221, 30, 58, 16, 28, 87, 247, 62, 93, 145, 253, 289, 155, 203, 299, 323, 217, 361, 45, 74
Offset: 4
Examples
The triangle begins 4 6 9 10 15 14 21, 25 none 8, 35 22 33, 49 26 12, 39, 55
References
- See A003415.
Links
- T. D. Noe, Rows n = 4..1000, flattened
- Victor Ufnarovski and Bo Ahlander, How to Differentiate a Number, J. Integer Seqs., Vol. 6, 2003.
Programs
-
Mathematica
dn[0] = 0; dn[1] = 0; dn[n_] := Module[{f = Transpose[FactorInteger[n]]}, If[PrimeQ[n], 1, Plus @@ (n*f[[2]]/f[[1]])]]; nn = 100; d = Array[dn, (nn/2)^2]; Table[Flatten[Position[d, n]], {n, 4, nn}]
Comments