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.

A088383 Numbers greater than the 4th power of their smallest prime factor.

Original entry on oeis.org

18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 87, 88, 90, 92, 93, 94, 96, 98, 99, 100, 102, 104, 105, 106, 108, 110, 111, 112, 114, 116, 117, 118, 120, 122, 123, 124, 126
Offset: 1

Views

Author

Reinhard Zumkeller, Sep 28 2003

Keywords

Comments

a(n) > A020639(a(n))^4 = A088379(a(n)); complement of A088382.
a(n) > A088382(k) for n <= 67, a(n) < A088382(k) for n > 67.

Crossrefs

Positions of numbers greater than 4 in A307908.

Programs

  • Haskell
    a088383 n = a088383_list !! (n-1)
    a088383_list = [x | x <- [1..], x  a020639 x ^ 4]
    -- Reinhard Zumkeller, Feb 06 2015
  • Mathematica
    Select[Range[200],#>(FactorInteger[#][[1,1]])^4&] (* Harvey P. Dale, Aug 15 2015 *)