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.

A258115 a(n) = A208570(n)/n.

Original entry on oeis.org

2, 3, 2, 3, 2, 2, 2, 3, 2, 3, 2, 5, 2, 3, 2, 3, 2, 2, 2, 3, 2, 3, 2, 5, 2, 3, 2, 3, 2, 2, 2, 3, 2, 3, 2, 5, 2, 3, 2, 3, 2, 2, 2, 3, 2, 3, 2, 5, 2, 3, 2, 3, 2, 2, 2, 3, 2, 3, 2, 7, 2, 3, 2, 3, 2, 2, 2, 3, 2, 3, 2, 5, 2, 3, 2, 3, 2, 2, 2, 3, 2, 3, 2, 5
Offset: 1

Views

Author

Robert Israel, May 20 2015

Keywords

Comments

The prime p that minimizes p^(1+nu_p(n)), where nu_p(n) is the p-adic order of n.
It satisfies p^(1+nu_p(n)) = A007978(n).

Crossrefs

Programs

  • Haskell
    a258115 n = a208570 n `div` n  -- Reinhard Zumkeller, May 22 2015
  • Maple
    Primes:= select(isprime,[2,seq(2*i+1,i=1..100)]):
    seq(Primes[min[index](map(p -> p^(1+padic[ordp](n,p)), Primes))],n=1..200);
  • Mathematica
    Table[(LCM[n, Min[Complement[Range[n+1], Divisors[n]]]]/n), {n, 100}] (* Vincenzo Librandi, May 21 2015 *)