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.

A342687 Numbers that are the sum of five fifth powers in three or more ways.

Original entry on oeis.org

13124675, 28055699, 50043937, 52679923, 53069024, 55097976, 57936559, 60484744, 62260463, 62445305, 70211956, 73133026, 79401728, 80368962, 84766210, 88512249, 93288865, 98824300, 106993391, 113055482, 117173891, 120968132, 123383875, 126416258, 131106051, 131529588, 132022925
Offset: 1

Views

Author

David Consiglio, Jr., May 18 2021

Keywords

Crossrefs

Programs

  • Python
    from itertools import combinations_with_replacement as cwr
    from collections import defaultdict
    keep = defaultdict(lambda: 0)
    power_terms = [x**5 for x in range(1, 500)]
    for pos in cwr(power_terms, 5):
        tot = sum(pos)
        keep[tot] += 1
    rets = sorted([k for k, v in keep.items() if v >= 3])
    for x in range(len(rets)):
        print(rets[x])