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.

A344940 Numbers that are the sum of five fourth powers in six or more ways.

Original entry on oeis.org

151300, 197779, 211059, 217154, 225890, 236194, 236675, 243235, 246674, 250834, 286114, 288579, 300835, 302130, 302210, 303235, 309059, 317795, 320195, 334819, 334899, 335443, 336210, 338914, 346835, 356899, 363379, 366995, 373234, 375619, 389875, 391154
Offset: 1

Views

Author

David Consiglio, Jr., Jun 03 2021

Keywords

Examples

			151300 is a term because 151300 = 3^4 + 3^4 + 3^4 + 12^4 + 19^4  = 3^4 + 11^4 + 11^4 + 14^4 + 17^4  = 3^4 + 13^4 + 13^4 + 13^4 + 16^4  = 6^4 + 9^4 + 9^4 + 9^4 + 19^4  = 7^4 + 11^4 + 11^4 + 11^4 + 18^4  = 8^4 + 9^4 + 13^4 + 13^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, 5):
        tot = sum(pos)
        keep[tot] += 1
    rets = sorted([k for k, v in keep.items() if v >= 6])
    for x in range(len(rets)):
        print(rets[x])

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

Original entry on oeis.org

1377, 1488, 1586, 1595, 1647, 1673, 1677, 1710, 1738, 1764, 1766, 1773, 1799, 1829, 1836, 1837, 1862, 1881, 1890, 1911, 1953, 1955, 1981, 1988, 2007, 2011, 2014, 2018, 2025, 2044, 2051, 2070, 2079, 2097, 2105, 2107, 2108, 2142, 2153, 2160, 2168, 2170, 2177
Offset: 1

Views

Author

David Consiglio, Jr., Jun 20 2021

Keywords

Examples

			1488 is a term because 1488 = 1^3 + 1^3 + 1^3 + 3^3 + 8^3 + 8^3 = 1^3 + 1^3 + 3^3 + 3^3 + 3^3 + 10^3 = 1^3 + 2^3 + 3^3 + 6^3 + 6^3 + 8^3 = 2^3 + 2^3 + 2^3 + 2^3 + 4^3 + 10^3 = 3^3 + 3^3 + 3^3 + 3^3 + 6^3 + 9^3 = 3^3 + 5^3 + 5^3 + 6^3 + 6^3 + 6^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 >= 6])
        for x in range(len(rets)):
            print(rets[x])

A345562 Numbers that are the sum of six fourth powers in five or more ways.

Original entry on oeis.org

15395, 16610, 18866, 19235, 19410, 20996, 21011, 21251, 21316, 21331, 21491, 21620, 23811, 25091, 29700, 29715, 29906, 29955, 30356, 30995, 31235, 31266, 31331, 31506, 32035, 33651, 33795, 33891, 35171, 35411, 35636, 35796, 35971, 37811, 37971, 38051, 38595
Offset: 1

Views

Author

David Consiglio, Jr., Jun 20 2021

Keywords

Examples

			16610 is a term because 16610 = 1^4 + 2^4 + 2^4 + 2^4 + 9^4 + 10^4 = 2^4 + 2^4 + 2^4 + 5^4 + 6^4 + 11^4 = 2^4 + 2^4 + 3^4 + 7^4 + 8^4 + 10^4 = 4^4 + 4^4 + 6^4 + 7^4 + 7^4 + 10^4 = 5^4 + 6^4 + 7^4 + 8^4 + 8^4 + 8^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 >= 5])
        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])

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

Original entry on oeis.org

10787, 15396, 15411, 15586, 15651, 16611, 16626, 16676, 16691, 16866, 17347, 17956, 17971, 18867, 19156, 19236, 19251, 19411, 19426, 19491, 19666, 20035, 20706, 20771, 21012, 21187, 21252, 21267, 21332, 21397, 21412, 21442, 21492, 21507, 21572, 21621, 21636
Offset: 1

Views

Author

David Consiglio, Jr., Jun 20 2021

Keywords

Examples

			15396 is a term because 15396 = 1^4 + 1^4 + 1^4 + 1^4 + 6^4 + 8^4 + 10^4 = 1^4 + 1^4 + 2^4 + 5^4 + 8^4 + 8^4 + 9^4 = 1^4 + 2^4 + 2^4 + 2^4 + 3^4 + 5^4 + 11^4 = 1^4 + 3^4 + 4^4 + 4^4 + 7^4 + 7^4 + 10^4 = 1^4 + 3^4 + 5^4 + 7^4 + 8^4 + 8^4 + 8^4 = 2^4 + 3^4 + 4^4 + 5^4 + 6^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 >= 6])
        for x in range(len(rets)):
            print(rets[x])

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

Original entry on oeis.org

37811, 38051, 43251, 43571, 44115, 44531, 45155, 45651, 45891, 47411, 47586, 49971, 52195, 53235, 54131, 56290, 57395, 57460, 57570, 59075, 59330, 59860, 60035, 62180, 62211, 63971, 66340, 67026, 67635, 67715, 67860, 67940, 68115, 68291, 68484, 69395, 69410
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

Differs from A345563 at term 1 because 21251 = 1^4 + 1^4 + 1^4 + 4^4 + 4^4 + 12^4 = 1^4 + 2^4 + 2^4 + 2^4 + 9^4 + 11^4 = 1^4 + 7^4 + 8^4 + 8^4 + 8^4 + 9^4 = 2^4 + 2^4 + 3^4 + 7^4 + 8^4 + 11^4 = 2^4 + 3^4 + 3^4 + 3^4 + 4^4 + 12^4 = 2^4 + 4^4 + 6^4 + 9^4 + 9^4 + 9^4 = 4^4 + 4^4 + 6^4 + 7^4 + 7^4 + 11^4.

Examples

			37811 is a term because 37811 = 1^4 + 2^4 + 2^4 + 7^4 + 11^4 + 12^4 = 2^4 + 2^4 + 4^4 + 7^4 + 9^4 + 13^4 = 2^4 + 3^4 + 6^4 + 6^4 + 9^4 + 13^4 = 3^4 + 4^4 + 8^4 + 8^4 + 11^4 + 11^4 = 4^4 + 6^4 + 7^4 + 9^4 + 9^4 + 12^4 = 5^4 + 5^4 + 9^4 + 10^4 + 10^4 + 10^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 == 6])
        for x in range(len(rets)):
            print(rets[x])

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

Original entry on oeis.org

287718651, 553545456, 746783675, 972232800, 1005620508, 1040741042, 1070652352, 1074892544, 1182426366, 1184966816, 1197332400, 1243267146, 1317183650, 1364866263, 1387455091, 1429663400, 1498160992, 1529189818, 1554833117, 1558594400, 1610298901
Offset: 1

Views

Author

David Consiglio, Jr., Jun 24 2021

Keywords

Examples

			553545456 is a term because 553545456 = 1^5 + 14^5 + 20^5 + 24^5 + 47^5 + 50^5 = 4^5 + 14^5 + 37^5 + 42^5 + 43^5 + 46^5 = 4^5 + 26^5 + 29^5 + 34^5 + 42^5 + 51^5 = 9^5 + 15^5 + 22^5 + 22^5 + 33^5 + 55^5 = 9^5 + 26^5 + 29^5 + 32^5 + 37^5 + 53^5 = 12^5 + 24^5 + 27^5 + 32^5 + 38^5 + 53^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 >= 6])
        for x in range(len(rets)):
            print(rets[x])
Showing 1-7 of 7 results.