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.

A124979 Numbers in A118882 for which 5 is not a divisor.

Original entry on oeis.org

169, 221, 289, 338, 377, 442, 481, 493, 533, 578, 629, 676, 689, 697, 754, 793, 841, 884, 901, 949, 962, 986, 1037, 1066, 1073, 1156, 1157, 1189, 1241, 1258, 1261, 1313, 1352, 1369, 1378, 1394, 1417, 1469, 1508, 1513, 1517
Offset: 1

Views

Author

Artur Jasinski, Nov 15 2006

Keywords

Crossrefs

Cf. A118882.

Programs

  • Python
    from itertools import count, islice
    from math import prod
    from sympy import factorint
    def A124979_gen(startvalue=1): # generator of terms >= startvalue
        for n in count(max(startvalue,1)):
            f = factorint(n)
            if n%5 and 1>1):
                yield n
    A124979_list = list(islice(A124979_gen(),30)) # Chai Wah Wu, Sep 09 2022

Extensions

Corrected and extended by M. F. Hasler, Feb 08 2009
Further corrections following an observation by P. McNab, by M. F. Hasler, Jul 08 2015