cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A085731 Greatest common divisor of n and its arithmetic derivative.

Original entry on oeis.org

1, 1, 1, 4, 1, 1, 1, 4, 3, 1, 1, 4, 1, 1, 1, 16, 1, 3, 1, 4, 1, 1, 1, 4, 5, 1, 27, 4, 1, 1, 1, 16, 1, 1, 1, 12, 1, 1, 1, 4, 1, 1, 1, 4, 3, 1, 1, 16, 7, 5, 1, 4, 1, 27, 1, 4, 1, 1, 1, 4, 1, 1, 3, 64, 1, 1, 1, 4, 1, 1, 1, 12, 1, 1, 5, 4, 1, 1, 1, 16, 27, 1, 1, 4, 1, 1, 1, 4, 1, 3, 1, 4, 1, 1, 1, 16
Offset: 1

Views

Author

Reinhard Zumkeller, Jul 20 2003

Keywords

Comments

a(n) = 1 iff n is squarefree (A005117), cf. A068328.
This sequence is very probably multiplicative. - Mitch Harris, Apr 19 2005

Crossrefs

Programs

  • Haskell
    a085731 n = gcd n $ a003415 n -- Reinhard Zumkeller, May 10 2011
    
  • Mathematica
    d[0] = d[1] = 0; d[n_] := d[n] = n*Total[Apply[#2/#1 &, FactorInteger[n], {1}]]; a[n_] := GCD[n, d[n]]; Table[a[n], {n, 1, 96}] (* Jean-François Alcover, Feb 21 2014 *)
    f[p_, e_] := p^If[Divisible[e, p], e, e - 1]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Oct 31 2023 *)
  • PARI
    a(n) = {my(f = factor(n)); for (i=1, #f~, if (f[i,2] % f[i,1], f[i,2]--);); factorback(f);} \\ Michel Marcus, Feb 14 2016

Formula

a(n) = GCD(n, A003415(n)).
Multiplicative with a(p^e) = p^e if p divides e; a(p^e) = p^(e-1) otherwise. - Eric M. Schmidt, Oct 22 2013
From Antti Karttunen, Feb 28 2021: (Start)
Thus a(A276086(n)) = A328572(n), by the above formula and the fact that A276086 is a permutation of A048103.
a(n) = n / A083346(n) = A190116(n) / A086130(n). (End)