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.

A247872 Least prime factor of A247681(n).

Original entry on oeis.org

5, 7, 5, 7, 5, 11, 17, 5, 7, 19, 5, 11, 7, 5, 13, 5, 11, 23, 5, 19, 7, 5, 13, 7, 5, 17, 5, 7, 13, 5, 23, 7, 5, 29, 17, 5, 11, 13, 5, 31, 7, 37, 19, 5, 11, 7, 5, 17, 5, 7, 11, 5, 29, 7, 5, 17, 11, 5, 31, 23, 41, 5, 13, 7, 5, 19, 7, 5, 13, 5, 7, 5, 23, 7, 5, 19, 11, 31, 5, 5, 7, 11, 5, 37, 7, 5, 47, 53, 11, 5, 7, 43, 13, 5, 7
Offset: 2

Views

Author

Odimar Fabeny, Sep 25 2014

Keywords

Crossrefs

Programs

  • Maple
    count:= 0:
    for n from 1 while count < 100 do
       m:= 1+18*n;
       if not isprime(m) then
          count:= count+1;
          A[count]:= min(numtheory:-factorset(m))
       fi
    od:
    seq(A[i],i=1..count); # Robert Israel, Sep 30 2014