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.

A345547 Numbers that are the sum of nine cubes in eight or more ways.

Original entry on oeis.org

744, 770, 805, 818, 840, 842, 844, 847, 859, 861, 866, 868, 877, 880, 883, 887, 894, 896, 903, 908, 909, 910, 911, 913, 915, 916, 920, 922, 929, 935, 939, 940, 945, 946, 948, 950, 952, 954, 955, 957, 959, 961, 964, 965, 966, 971, 972, 973, 976, 978, 983, 985
Offset: 1

Views

Author

David Consiglio, Jr., Jun 20 2021

Keywords

Examples

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

A345850 Numbers that are the sum of nine fourth powers in exactly eight ways.

Original entry on oeis.org

6804, 6869, 8019, 8084, 8324, 8499, 8564, 9044, 9124, 9219, 9234, 9284, 9364, 9429, 9474, 9494, 9604, 9669, 9749, 9779, 10148, 10259, 10293, 10339, 10388, 10453, 10514, 10579, 10628, 10644, 10754, 10789, 11029, 11059, 11189, 11204, 11299, 11363, 11364, 11379
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

Differs from A345592 at term 5 because 8259 = 1^4 + 1^4 + 1^4 + 2^4 + 2^4 + 2^4 + 2^4 + 8^4 + 8^4 = 1^4 + 1^4 + 1^4 + 2^4 + 4^4 + 6^4 + 6^4 + 6^4 + 8^4 = 1^4 + 2^4 + 2^4 + 2^4 + 2^4 + 3^4 + 4^4 + 6^4 + 9^4 = 2^4 + 2^4 + 2^4 + 3^4 + 3^4 + 4^4 + 6^4 + 7^4 + 8^4 = 2^4 + 2^4 + 3^4 + 3^4 + 3^4 + 6^4 + 6^4 + 6^4 + 8^4 = 2^4 + 2^4 + 4^4 + 4^4 + 4^4 + 4^4 + 7^4 + 7^4 + 7^4 = 2^4 + 3^4 + 4^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 + 4^4 + 9^4 = 3^4 + 3^4 + 4^4 + 4^4 + 6^4 + 6^4 + 6^4 + 6^4 + 7^4.

Examples

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

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

Original entry on oeis.org

970, 977, 1054, 1073, 1075, 1090, 1099, 1106, 1110, 1125, 1129, 1148, 1160, 1166, 1178, 1181, 1186, 1188, 1206, 1211, 1217, 1218, 1225, 1230, 1232, 1234, 1236, 1237, 1242, 1249, 1263, 1276, 1281, 1286, 1292, 1298, 1305, 1312, 1314, 1321, 1323, 1324, 1334
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

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

Examples

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

A345799 Numbers that are the sum of nine cubes in exactly seven ways.

Original entry on oeis.org

624, 629, 631, 650, 657, 687, 694, 707, 713, 720, 727, 746, 753, 755, 763, 768, 777, 779, 781, 784, 786, 789, 792, 796, 798, 803, 807, 820, 822, 824, 831, 833, 848, 849, 854, 870, 873, 875, 876, 879, 884, 885, 889, 890, 892, 898, 899, 901, 902, 904, 905, 906
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

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

Examples

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

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

Original entry on oeis.org

859, 861, 896, 903, 922, 929, 935, 939, 959, 973, 997, 999, 1009, 1016, 1020, 1023, 1027, 1029, 1030, 1034, 1035, 1036, 1037, 1041, 1046, 1059, 1060, 1064, 1065, 1066, 1067, 1071, 1072, 1079, 1086, 1091, 1105, 1116, 1131, 1138, 1146, 1152, 1155, 1157, 1158
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

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

Examples

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

A345810 Numbers that are the sum of ten cubes in exactly eight ways.

Original entry on oeis.org

623, 625, 630, 644, 662, 665, 677, 684, 697, 699, 708, 715, 723, 725, 728, 730, 733, 734, 747, 749, 751, 757, 758, 759, 760, 764, 766, 769, 775, 776, 777, 785, 786, 787, 789, 793, 794, 796, 804, 810, 811, 814, 817, 820, 826, 827, 828, 829, 830, 831, 836, 838
Offset: 1

Views

Author

David Consiglio, Jr., Jun 26 2021

Keywords

Comments

Differs from A345556 at term 4 because 632 = 1^3 + 1^3 + 1^3 + 1^3 + 2^3 + 3^3 + 3^3 + 3^3 + 3^3 + 8^3 = 1^3 + 1^3 + 1^3 + 1^3 + 4^3 + 4^3 + 5^3 + 5^3 + 5^3 + 5^3 = 1^3 + 1^3 + 1^3 + 2^3 + 3^3 + 4^3 + 4^3 + 5^3 + 5^3 + 6^3 = 1^3 + 1^3 + 2^3 + 2^3 + 3^3 + 3^3 + 4^3 + 4^3 + 6^3 + 6^3 = 1^3 + 1^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 5^3 + 7^3 = 1^3 + 2^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 + 2^3 + 4^3 + 4^3 + 4^3 + 4^3 + 7^3 = 2^3 + 2^3 + 2^3 + 2^3 + 2^3 + 2^3 + 3^3 + 5^3 + 6^3 + 6^3 = 2^3 + 3^3 + 3^3 + 4^3 + 4^3 + 4^3 + 4^3 + 4^3 + 5^3 + 5^3.
Likely finite.

Examples

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