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.

A145108 Multiples of 4 that are primally tight and have strictly ascending powers.

Original entry on oeis.org

4, 8, 16, 32, 64, 108, 128, 256, 324, 512, 648, 972, 1024, 1944, 2048, 2916, 3888, 4096, 5832, 8192, 8748, 11664, 16384, 17496, 23328, 26244, 32768, 34992, 52488, 65536, 67500, 69984, 78732, 104976, 131072, 139968, 157464, 209952, 236196, 262144
Offset: 1

Views

Author

Reikku Kulon, Oct 02 2008

Keywords

Comments

All numbers of the form 2^k0*p_1^k1*p_2^k2*...*p_n^k_n, where 2 <= k0 < k1 < k2 < ... < k_n and the p_i are n successive primes.

Crossrefs

Programs

  • Haskell
    a145108 n = a145108_list !! (n-1)
    a145108_list = filter ((== 0) . (`mod` 4)) a133809_list
    -- Reinhard Zumkeller, Apr 14 2015