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-6 of 6 results.

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

Original entry on oeis.org

15395, 16610, 18866, 19235, 19410, 20996, 21011, 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, 37971, 38595, 38675, 39266, 39890
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

Differs from A345562 at term 8 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

			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])

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

Original entry on oeis.org

54827300, 74115800, 74883600, 75609125, 113088250, 120274275, 166078869, 169692136, 174781858, 178736448, 182341225, 185558208, 194939538, 203054589, 218814275, 235067008, 250989825, 251772882, 252721458, 255453233, 258124975, 274616694, 282859667
Offset: 1

Views

Author

David Consiglio, Jr., Jun 24 2021

Keywords

Examples

			74115800 is a term because 74115800 = 1^5 + 4^5 + 21^5 + 21^5 + 29^5 + 34^5 = 1^5 + 8^5 + 14^5 + 23^5 + 32^5 + 32^5 = 4^5 + 11^5 + 13^5 + 22^5 + 24^5 + 36^5 = 5^5 + 6^5 + 19^5 + 20^5 + 24^5 + 36^5 = 6^5 + 25^5 + 25^5 + 25^5 + 29^5 + 30^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 >= 5])
        for x in range(len(rets)):
            print(rets[x])

A346257 Numbers that are the sum of five fifth powers in exactly five ways.

Original entry on oeis.org

9006349824, 65799210368, 67629776576, 181085909632, 188189635424, 295677350451, 467139768468, 471359089024, 656243139157, 691381929281, 797466940832, 854533526901, 874953049024, 891862586132, 953769598750, 1038549256768, 1092458681568, 1182658308657
Offset: 1

Views

Author

David Consiglio, Jr., Jul 11 2021

Keywords

Comments

Differs from 103 terms known at term 6 because 288203194368 = 48^5 + 84^5 + 96^5 + 108^5 + 192^5 = 16^5 + 99^5 + 103^5 + 121^5 + 189^5 = 42^5 + 68^5 + 86^5 + 148^5 + 184^5 = 16^5 + 68^5 + 124^5 + 136^5 + 184^5 = 16^5 + 82^5 + 94^5 + 158^5 + 178^5 = 24^5 + 36^5 + 144^5 + 156^5 + 168^5.

Examples

			9006349824 is a term because 9006349824 = 24^5 + 42^5 + 48^5 + 54^5 + 96^5 = 21^5 + 34^5 + 43^5 + 74^5 + 92^5 = 8^5 + 34^5 + 62^5 + 68^5 + 92^5 = 8^5 + 41^5 + 47^5 + 79^5 + 89^5 = 12^5 + 18^5 + 72^5 + 78^5 + 84^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, 5):
        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])

A346282 Numbers that are the sum of seven fifth powers in exactly five ways.

Original entry on oeis.org

6768576, 6776120, 7883668, 8625376, 8740709, 10036201, 10604054, 12476826, 12618493, 13006575, 13060213, 13080706, 13174250, 13536416, 13550162, 13662500, 14110656, 15169276, 15247994, 16053313, 16060683, 16374218, 16573507, 16600001, 17735057, 17749152
Offset: 1

Views

Author

David Consiglio, Jr., Jul 13 2021

Keywords

Comments

Differs from A345608 at term 16 because 13562501 = 1^5 + 1^5 + 1^5 + 9^5 + 14^5 + 20^5 + 25^5 = 1^5 + 15^5 + 15^5 + 15^5 + 15^5 + 15^5 + 25^5 = 6^5 + 7^5 + 11^5 + 16^5 + 18^5 + 19^5 + 24^5 = 7^5 + 7^5 + 11^5 + 13^5 + 19^5 + 21^5 + 23^5 = 2^5 + 6^5 + 14^5 + 18^5 + 18^5 + 21^5 + 22^5 = 1^5 + 5^5 + 15^5 + 20^5 + 20^5 + 20^5 + 20^5.

Examples

			6768576 is a term because 6768576 = 4^5 + 6^5 + 6^5 + 6^5 + 9^5 + 12^5 + 23^5 = 1^5 + 3^5 + 4^5 + 8^5 + 11^5 + 17^5 + 22^5 = 6^5 + 12^5 + 13^5 + 14^5 + 15^5 + 15^5 + 21^5 = 8^5 + 10^5 + 12^5 + 12^5 + 16^5 + 18^5 + 20^5 = 8^5 + 8^5 + 14^5 + 14^5 + 14^5 + 18^5 + 20^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, 7):
        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])

A346359 Numbers that are the sum of six fifth powers in exactly four ways.

Original entry on oeis.org

12047994, 20646208, 21017489, 21300963, 21741819, 24993485, 27669050, 28576064, 30193856, 30785920, 35480456, 35735194, 36082750, 37303264, 39035975, 46814942, 47963291, 50047062, 50724345, 52987561, 53076800, 53606848, 55101101, 56766906, 57969327, 58125980
Offset: 1

Views

Author

David Consiglio, Jr., Jul 13 2021

Keywords

Comments

Differs from A345718 at term 23 because 54827300 = 4^5 + 7^5 + 21^5 + 22^5 + 23^5 + 33^5 = 5^5 + 10^5 + 15^5 + 20^5 + 28^5 + 32^5 = 1^5 + 14^5 + 16^5 + 19^5 + 28^5 + 32^5 = 4^5 + 11^5 + 13^5 + 22^5 + 29^5 + 31^5 = 5^5 + 6^5 + 19^5 + 20^5 + 29^5 + 31^5.

Examples

			12047994 is a term because 12047994 = 7^5 + 9^5 + 12^5 + 14^5 + 17^5 + 25^5 = 5^5 + 10^5 + 13^5 + 15^5 + 16^5 + 25^5 = 1^5 + 1^5 + 3^5 + 4^5 + 21^5 + 24^5 = 4^5 + 6^5 + 15^5 + 15^5 + 21^5 + 23^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 == 4])
        for x in range(len(rets)):
            print(rets[x])

A346361 Numbers that are the sum of six fifth powers in exactly six ways.

Original entry on oeis.org

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

Views

Author

David Consiglio, Jr., Jul 13 2021

Keywords

Comments

Differs from A345720 at term 10 because 1184966816 = 15^5 + 24^5 + 27^5 + 38^5 + 39^5 + 63^5 = 2^5 + 28^5 + 36^5 + 36^5 + 42^5 + 62^5 = 4^5 + 24^5 + 38^5 + 38^5 + 40^5 + 62^5 = 21^5 + 32^5 + 37^5 + 41^5 + 45^5 + 60^5 = 8^5 + 14^5 + 34^5 + 40^5 + 52^5 + 58^5 = 11^5 + 17^5 + 22^5 + 49^5 + 51^5 + 56^5 = 11^5 + 16^5 + 22^5 + 52^5 + 52^5 + 53^5.

Examples

			287718651 is a term because 287718651 = 10^5 + 11^5 + 20^5 + 22^5 + 30^5 + 48^5 = 8^5 + 10^5 + 21^5 + 27^5 + 27^5 + 48^5 = 3^5 + 6^5 + 25^5 + 30^5 + 30^5 + 47^5 = 9^5 + 10^5 + 13^5 + 26^5 + 37^5 + 46^5 = 6^5 + 9^5 + 14^5 + 31^5 + 35^5 + 46^5 = 10^5 + 11^5 + 12^5 + 23^5 + 41^5 + 44^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-6 of 6 results.