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.

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

Original entry on oeis.org

628, 719, 769, 776, 778, 795, 832, 839, 846, 858, 860, 865, 872, 875, 876, 882, 886, 891, 893, 895, 901, 902, 907, 908, 912, 921, 927, 928, 931, 938, 945, 946, 947, 951, 954, 956, 958, 963, 964, 965, 970, 972, 977, 982, 984, 989, 991, 992, 996, 998, 999, 1001
Offset: 1

Views

Author

David Consiglio, Jr., Jun 20 2021

Keywords

Examples

			719 is a term because 719 = 1^3 + 1^3 + 1^3 + 4^3 + 4^3 + 4^3 + 4^3 + 5^3 = 1^3 + 1^3 + 2^3 + 3^3 + 4^3 + 4^3 + 5^3 + 5^3 = 1^3 + 2^3 + 2^3 + 3^3 + 3^3 + 5^3 + 5^3 + 5^3 = 2^3 + 2^3 + 2^3 + 2^3 + 3^3 + 3^3 + 5^3 + 6^3 = 2^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 7^3 = 3^3 + 3^3 + 3^3 + 3^3 + 4^3 + 4^3 + 4^3 + 4^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, 8):
        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])

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

Original entry on oeis.org

6723, 6788, 6853, 6898, 6963, 7028, 7938, 8068, 8178, 8308, 8483, 8963, 9173, 9348, 9413, 9493, 9668, 9763, 9828, 10003, 10132, 10258, 10277, 10307, 10628, 10708, 10738, 10788, 10933, 10978, 11108, 11123, 11188, 11347, 11363, 11428, 11492, 11652, 11668, 11843
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

Differs from A345581 at term 8 because 8003 = 1^4 + 1^4 + 1^4 + 2^4 + 6^4 + 6^4 + 6^4 + 8^4 = 1^4 + 2^4 + 2^4 + 2^4 + 2^4 + 3^4 + 6^4 + 9^4 = 2^4 + 2^4 + 2^4 + 3^4 + 3^4 + 6^4 + 7^4 + 8^4 = 2^4 + 2^4 + 4^4 + 4^4 + 4^4 + 7^4 + 7^4 + 7^4 = 2^4 + 3^4 + 4^4 + 4^4 + 6^4 + 6^4 + 7^4 + 7^4 = 3^4 + 3^4 + 4^4 + 4^4 + 4^4 + 4^4 + 4^4 + 9^4 = 3^4 + 3^4 + 4^4 + 6^4 + 6^4 + 6^4 + 6^4 + 7^4.

Examples

			6788 is a term because 6788 = 1^4 + 1^4 + 1^4 + 2^4 + 2^4 + 4^4 + 7^4 + 8^4 = 1^4 + 1^4 + 1^4 + 2^4 + 3^4 + 6^4 + 6^4 + 8^4 = 1^4 + 2^4 + 2^4 + 2^4 + 2^4 + 3^4 + 3^4 + 9^4 = 2^4 + 2^4 + 2^4 + 3^4 + 3^4 + 3^4 + 7^4 + 8^4 = 2^4 + 3^4 + 3^4 + 4^4 + 4^4 + 6^4 + 7^4 + 7^4 = 3^4 + 3^4 + 3^4 + 4^4 + 6^4 + 6^4 + 6^4 + 7^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, 8):
        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])

A345778 Numbers that are the sum of seven cubes in exactly six ways.

Original entry on oeis.org

955, 969, 1046, 1053, 1079, 1107, 1117, 1121, 1158, 1161, 1177, 1184, 1196, 1198, 1216, 1222, 1242, 1254, 1272, 1280, 1287, 1291, 1294, 1297, 1298, 1310, 1324, 1350, 1351, 1355, 1366, 1369, 1376, 1378, 1388, 1403, 1404, 1415, 1417, 1418, 1422, 1433, 1437
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

Differs from A345524 at term 5 because 1072 = 1^3 + 1^3 + 1^3 + 5^3 + 6^3 + 6^3 + 8^3 = 1^3 + 1^3 + 2^3 + 2^3 + 3^3 + 3^3 + 10^3 = 1^3 + 1^3 + 3^3 + 4^3 + 5^3 + 5^3 + 9^3 = 1^3 + 2^3 + 3^3 + 3^3 + 4^3 + 6^3 + 9^3 = 2^3 + 4^3 + 4^3 + 5^3 + 5^3 + 7^3 + 7^3 = 3^3 + 3^3 + 3^3 + 6^3 + 6^3 + 6^3 + 7^3 = 3^3 + 4^3 + 4^3 + 4^3 + 5^3 + 6^3 + 8^3.
Likely finite.

Examples

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

A345787 Numbers that are the sum of eight cubes in exactly five ways.

Original entry on oeis.org

471, 497, 504, 597, 623, 630, 635, 642, 649, 654, 661, 667, 680, 686, 691, 693, 712, 717, 723, 728, 736, 738, 741, 743, 752, 754, 755, 762, 774, 780, 781, 783, 784, 785, 788, 791, 793, 797, 800, 802, 804, 810, 813, 814, 815, 817, 819, 820, 821, 830, 834, 837
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

Differs from A345535 at term 6 because 628 = 1^3 + 1^3 + 1^3 + 1^3 + 1^3 + 4^3 + 6^3 + 7^3 = 1^3 + 1^3 + 1^3 + 5^3 + 5^3 + 5^3 + 5^3 + 5^3 = 1^3 + 1^3 + 2^3 + 3^3 + 5^3 + 5^3 + 5^3 + 6^3 = 1^3 + 1^3 + 3^3 + 4^3 + 4^3 + 4^3 + 4^3 + 7^3 = 1^3 + 2^3 + 2^3 + 3^3 + 3^3 + 5^3 + 6^3 + 6^3 = 2^3 + 2^3 + 2^3 + 2^3 + 4^3 + 4^3 + 5^3 + 7^3.
Likely finite.

Examples

			497 is a term because 497 = 1^3 + 1^3 + 1^3 + 1^3 + 3^3 + 4^3 + 4^3 + 5^3 = 1^3 + 1^3 + 1^3 + 2^3 + 3^3 + 3^3 + 5^3 + 5^3 = 1^3 + 1^3 + 2^3 + 2^3 + 2^3 + 3^3 + 3^3 + 6^3 = 1^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 4^3 + 4^3 = 2^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 5^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, 8):
        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])

A345789 Numbers that are the sum of eight cubes in exactly seven ways.

Original entry on oeis.org

902, 908, 921, 938, 958, 963, 982, 991, 996, 1003, 1008, 1010, 1017, 1019, 1028, 1029, 1033, 1047, 1055, 1058, 1061, 1062, 1070, 1087, 1091, 1094, 1096, 1097, 1104, 1108, 1111, 1113, 1115, 1116, 1118, 1120, 1122, 1123, 1127, 1134, 1141, 1143, 1145, 1152, 1153
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

Differs from A345537 at term 7 because 970 = 1^3 + 1^3 + 1^3 + 1^3 + 4^3 + 6^3 + 7^3 + 7^3 = 1^3 + 1^3 + 2^3 + 2^3 + 2^3 + 6^3 + 6^3 + 8^3 = 1^3 + 1^3 + 5^3 + 5^3 + 5^3 + 5^3 + 5^3 + 7^3 = 1^3 + 2^3 + 2^3 + 2^3 + 3^3 + 4^3 + 5^3 + 9^3 = 1^3 + 2^3 + 3^3 + 5^3 + 5^3 + 5^3 + 6^3 + 7^3 = 1^3 + 3^3 + 4^3 + 4^3 + 4^3 + 4^3 + 7^3 + 7^3 = 2^3 + 2^3 + 3^3 + 3^3 + 5^3 + 6^3 + 6^3 + 7^3 = 2^3 + 2^3 + 4^3 + 4^3 + 4^3 + 5^3 + 5^3 + 8^3.
Likely finite.

Examples

			908 is a term because 908 = 1^3 + 1^3 + 2^3 + 2^3 + 2^3 + 3^3 + 6^3 + 7^3 = 1^3 + 1^3 + 2^3 + 4^3 + 4^3 + 5^3 + 5^3 + 5^3 = 1^3 + 2^3 + 2^3 + 3^3 + 5^3 + 5^3 + 5^3 + 5^3 = 1^3 + 3^3 + 3^3 + 3^3 + 3^3 + 4^3 + 4^3 + 7^3 = 2^3 + 2^3 + 3^3 + 3^3 + 3^3 + 4^3 + 6^3 + 6^3 = 2^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 5^3 + 7^3 = 3^3 + 3^3 + 3^3 + 4^3 + 4^3 + 4^3 + 4^3 + 5^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, 8):
        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])

A345798 Numbers that are the sum of nine cubes in exactly six ways.

Original entry on oeis.org

472, 498, 505, 507, 524, 596, 598, 605, 636, 643, 655, 661, 662, 669, 672, 676, 681, 688, 690, 692, 696, 706, 718, 722, 725, 728, 729, 731, 732, 737, 739, 742, 748, 749, 750, 751, 756, 765, 772, 782, 783, 785, 787, 788, 791, 793, 794, 800, 801, 802, 808, 810
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

Differs from A345545 at term 9 because 624 = 1^3 + 1^3 + 1^3 + 1^3 + 3^3 + 3^3 + 3^3 + 3^3 + 8^3 = 1^3 + 1^3 + 1^3 + 3^3 + 4^3 + 4^3 + 5^3 + 5^3 + 6^3 = 1^3 + 1^3 + 2^3 + 3^3 + 3^3 + 4^3 + 4^3 + 6^3 + 6^3 = 1^3 + 2^3 + 2^3 + 2^3 + 2^3 + 5^3 + 5^3 + 5^3 + 6^3 = 1^3 + 2^3 + 2^3 + 2^3 + 4^3 + 4^3 + 4^3 + 4^3 + 7^3 = 2^3 + 2^3 + 2^3 + 2^3 + 2^3 + 3^3 + 5^3 + 6^3 + 6^3 = 3^3 + 3^3 + 4^3 + 4^3 + 4^3 + 4^3 + 4^3 + 5^3 + 5^3.
Likely finite.

Examples

			498 is a term because 498 = 1^3 + 1^3 + 1^3 + 1^3 + 1^3 + 3^3 + 4^3 + 4^3 + 5^3 = 1^3 + 1^3 + 1^3 + 1^3 + 2^3 + 3^3 + 3^3 + 5^3 + 5^3 = 1^3 + 1^3 + 1^3 + 2^3 + 2^3 + 2^3 + 3^3 + 3^3 + 6^3 = 1^3 + 1^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 4^3 + 4^3 = 1^3 + 2^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 5^3 = 2^3 + 2^3 + 2^3 + 2^3 + 3^3 + 3^3 + 4^3 + 4^3 + 4^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, 9):
        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.