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.

Showing 1-7 of 7 results.

A345517 Numbers that are the sum of six cubes in eight or more ways.

Original entry on oeis.org

1981, 2105, 2168, 2277, 2368, 2376, 2431, 2438, 2457, 2466, 2494, 2538, 2555, 2557, 2583, 2593, 2646, 2665, 2672, 2709, 2746, 2753, 2763, 2765, 2772, 2880, 2881, 2889, 2916, 2942, 2961, 2970, 2977, 2979, 2980, 2987, 3007, 3033, 3040, 3042, 3043, 3049, 3068
Offset: 1

Views

Author

David Consiglio, Jr., Jun 20 2021

Keywords

Examples

			2105 is a term because 2105 = 1^3 + 1^3 + 4^3 + 4^3 + 4^3 + 11^3 = 1^3 + 2^3 + 3^3 + 4^3 + 5^3 + 11^3 = 1^3 + 2^3 + 6^3 + 7^3 + 7^3 + 8^3 = 1^3 + 4^3 + 4^3 + 4^3 + 8^3 + 9^3 = 1^3 + 4^3 + 5^3 + 5^3 + 5^3 + 10^3 = 2^3 + 3^3 + 4^3 + 5^3 + 8^3 + 9^3 = 3^3 + 3^3 + 3^3 + 7^3 + 7^3 + 9^3 = 5^3 + 5^3 + 5^3 + 5^3 + 7^3 + 8^3.
		

Crossrefs

Programs

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

A345564 Numbers that are the sum of six fourth powers in seven or more ways.

Original entry on oeis.org

21251, 43875, 48276, 49796, 53315, 58035, 58500, 59780, 59795, 59811, 67875, 68306, 69155, 69779, 71955, 72051, 72131, 73970, 74420, 74851, 77010, 80291, 80515, 81875, 82275, 84515, 86436, 86451, 86531, 87075, 87746, 88355, 88595, 88660, 88675, 90355, 91475
Offset: 1

Views

Author

David Consiglio, Jr., Jun 20 2021

Keywords

Examples

			43875 is a term because 43875 = 1^4 + 2^4 + 9^4 + 9^4 + 10^4 + 12^4 = 2^4 + 2^4 + 2^4 + 5^4 + 11^4 + 13^4 = 2^4 + 2^4 + 5^4 + 7^4 + 7^4 + 14^4 = 2^4 + 5^4 + 6^4 + 9^4 + 11^4 + 12^4 = 3^4 + 7^4 + 8^4 + 9^4 + 10^4 + 12^4 = 4^4 + 4^4 + 7^4 + 7^4 + 10^4 + 13^4 = 5^4 + 7^4 + 8^4 + 8^4 + 8^4 + 13^4.
		

Crossrefs

Programs

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

A345566 Numbers that are the sum of six fourth powers in nine or more ways.

Original entry on oeis.org

88595, 122915, 132546, 134931, 144835, 146450, 151556, 161475, 162355, 162755, 170275, 171555, 171795, 172036, 172835, 173075, 177380, 177716, 180770, 183540, 183620, 184835, 185315, 185555, 187700, 187715, 190100, 190211, 193635, 195380, 195780, 196435
Offset: 1

Views

Author

David Consiglio, Jr., Jun 20 2021

Keywords

Examples

			122915 is a term because 122915 = 1^4 + 3^4 + 6^4 + 9^4 + 10^4 + 18^4 = 1^4 + 4^4 + 7^4 + 8^4 + 15^4 + 16^4 = 1^4 + 7^4 + 9^4 + 10^4 + 14^4 + 16^4 = 2^4 + 3^4 + 4^4 + 5^4 + 14^4 + 17^4 = 2^4 + 4^4 + 5^4 + 7^4 + 11^4 + 18^4 = 2^4 + 9^4 + 9^4 + 12^4 + 14^4 + 15^4 = 3^4 + 5^4 + 6^4 + 6^4 + 11^4 + 18^4 = 3^4 + 8^4 + 10^4 + 11^4 + 13^4 + 16^4 = 5^4 + 6^4 + 7^4 + 11^4 + 14^4 + 16^4 = 8^4 + 8^4 + 9^4 + 10^4 + 11^4 + 17^4.
		

Crossrefs

Programs

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

A345574 Numbers that are the sum of seven fourth powers in eight or more ways.

Original entry on oeis.org

19491, 21252, 21267, 21332, 21507, 21636, 21876, 23652, 25347, 30372, 31251, 31412, 31652, 32116, 32356, 33811, 33907, 35427, 35637, 35652, 35892, 36052, 36261, 37812, 37827, 38052, 38067, 38596, 38676, 39267, 39347, 39891, 39971, 39972, 40212, 40356, 40452
Offset: 1

Views

Author

David Consiglio, Jr., Jun 20 2021

Keywords

Examples

			21252 is a term because 21252 = 1^4 + 1^4 + 1^4 + 1^4 + 4^4 + 4^4 + 12^4 = 1^4 + 1^4 + 2^4 + 2^4 + 2^4 + 9^4 + 11^4 = 1^4 + 1^4 + 7^4 + 8^4 + 8^4 + 8^4 + 9^4 = 1^4 + 2^4 + 2^4 + 3^4 + 7^4 + 8^4 + 11^4 = 1^4 + 2^4 + 3^4 + 3^4 + 3^4 + 4^4 + 12^4 = 1^4 + 2^4 + 4^4 + 6^4 + 9^4 + 9^4 + 9^4 = 1^4 + 4^4 + 4^4 + 6^4 + 7^4 + 7^4 + 11^4 = 3^4 + 4^4 + 6^4 + 7^4 + 8^4 + 9^4 + 9^4.
		

Crossrefs

Programs

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

A345820 Numbers that are the sum of six fourth powers in exactly eight ways.

Original entry on oeis.org

58035, 59780, 87746, 96195, 96450, 102371, 106451, 106515, 108035, 108275, 108290, 108771, 112370, 112931, 115251, 122835, 122850, 124691, 125971, 133395, 133571, 133586, 134675, 136931, 138275, 138595, 143650, 144755, 145826, 147491, 148820, 149571, 150115
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

Differs from A345565 at term 4 because 88595 = 1^4 + 4^4 + 5^4 + 12^4 + 13^4 + 14^4 = 1^4 + 6^4 + 6^4 + 11^4 + 12^4 + 15^4 = 1^4 + 7^4 + 8^4 + 9^4 + 10^4 + 16^4 = 2^4 + 8^4 + 9^4 + 9^4 + 12^4 + 15^4 = 2^4 + 10^4 + 11^4 + 11^4 + 12^4 + 13^4 = 4^4 + 6^4 + 6^4 + 9^4 + 13^4 + 15^4 = 5^4 + 6^4 + 7^4 + 8^4 + 11^4 + 16^4 = 7^4 + 7^4 + 10^4 + 11^4 + 12^4 + 14^4.

Examples

			59780 is a term because 59780 = 1^4 + 1^4 + 1^4 + 5^4 + 12^4 + 14^4 = 1^4 + 1^4 + 6^4 + 6^4 + 9^4 + 15^4 = 1^4 + 2^4 + 9^4 + 10^4 + 11^4 + 13^4 = 1^4 + 4^4 + 7^4 + 7^4 + 8^4 + 15^4 = 1^4 + 7^4 + 7^4 + 9^4 + 10^4 + 14^4 = 2^4 + 5^4 + 6^4 + 11^4 + 11^4 + 13^4 = 3^4 + 7^4 + 8^4 + 10^4 + 11^4 + 13^4 = 5^4 + 6^4 + 7^4 + 7^4 + 11^4 + 14^4.
		

Crossrefs

Programs

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

A344944 Numbers that are the sum of five fourth powers in eight or more ways.

Original entry on oeis.org

534130, 619090, 654754, 663155, 729219, 737459, 742770, 758354, 775714, 810034, 813459, 816579, 831250, 906034, 930499, 954930, 954979, 1009954, 1055619, 1083955, 1099459, 1100579, 1101859, 1103554, 1106019, 1157634, 1167794, 1179379, 1180003, 1186834
Offset: 1

Views

Author

David Consiglio, Jr., Jun 03 2021

Keywords

Examples

			534130 is a term because 534130 = 1^4 + 3^4 + 16^4 + 22^4 + 22^4  = 2^4 + 2^4 + 4^4 + 7^4 + 27^4  = 2^4 + 3^4 + 6^4 + 6^4 + 27^4  = 2^4 + 6^4 + 9^4 + 21^4 + 24^4  = 4^4 + 16^4 + 17^4 + 18^4 + 23^4  = 6^4 + 8^4 + 11^4 + 22^4 + 23^4  = 7^4 + 8^4 + 16^4 + 19^4 + 24^4  = 13^4 + 14^4 + 14^4 + 21^4 + 22^4.
		

Crossrefs

Programs

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

A345722 Numbers that are the sum of six fifth powers in eight or more ways.

Original entry on oeis.org

2295937600, 4335900525, 6251954544, 8986552608, 9085584992, 13413708308, 14539246326, 15277569450, 15728636000, 16770321920, 16873011232, 16933805856, 17572402769, 17713454592, 17960776999, 18190647200, 19621666592, 20570070125, 20827689300
Offset: 1

Views

Author

David Consiglio, Jr., Jun 24 2021

Keywords

Examples

			4335900525 is a term because 4335900525 = 2^5 + 24^5 + 34^5 + 56^5 + 61^5 + 78^5 = 3^5 + 21^5 + 37^5 + 54^5 + 62^5 + 78^5 = 3^5 + 21^5 + 39^5 + 49^5 + 66^5 + 77^5 = 3^5 + 26^5 + 32^5 + 49^5 + 72^5 + 73^5 = 8^5 + 16^5 + 42^5 + 49^5 + 61^5 + 79^5 = 9^5 + 13^5 + 43^5 + 47^5 + 66^5 + 77^5 = 19^5 + 20^5 + 30^5 + 45^5 + 61^5 + 80^5 = 21^5 + 24^5 + 28^5 + 37^5 + 67^5 + 78^5.
		

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, 1000)]
    for pos in cwr(power_terms, 6):
        tot = sum(pos)
        keep[tot] += 1
        rets = sorted([k for k, v in keep.items() if v >= 8])
        for x in range(len(rets)):
            print(rets[x])
Showing 1-7 of 7 results.