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.

A025336 Numbers that are the sum of 3 nonzero squares in 8 or more ways.

Original entry on oeis.org

374, 446, 486, 521, 566, 569, 594, 614, 621, 626, 629, 686, 689, 701, 710, 729, 734, 749, 761, 770, 774, 789, 794, 801, 809, 810, 825, 846, 849, 854, 857, 866, 869, 881, 902, 909, 914, 926, 929, 941, 945, 950, 953, 965, 969, 971, 974, 986, 989, 990, 1001, 1014, 1022
Offset: 1

Views

Author

Keywords

Crossrefs

A345152 Numbers that are the sum of four third powers in eight or more ways.

Original entry on oeis.org

21896, 27720, 30429, 31339, 31402, 33579, 34624, 34776, 36162, 36225, 40105, 42120, 42695, 44037, 44163, 44226, 44947, 45162, 45675, 46277, 46683, 46872, 46900, 47600, 48321, 48825, 49042, 50112, 50689, 50806, 50904, 51058, 51408, 51480, 51506, 51597, 51688
Offset: 1

Views

Author

David Consiglio, Jr., Jun 09 2021

Keywords

Examples

			30429 is a term because 30429 = 1^3 + 4^3 + 7^3 + 30^3  = 1^3 + 16^3 + 17^3 + 26^3  = 2^3 + 12^3 + 21^3 + 25^3  = 3^3 + 3^3 + 14^3 + 29^3  = 4^3 + 17^3 + 21^3 + 23^3  = 5^3 + 11^3 + 15^3 + 28^3  = 6^3 + 6^3 + 22^3 + 25^3  = 7^3 + 14^3 + 18^3 + 26^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, 4):
        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])

A345119 Numbers that are the sum of three third powers in nine or more ways.

Original entry on oeis.org

14926248, 16819704, 20168784, 34012224, 44946000, 45580536, 54042624, 58995000, 59768064, 62099136, 66203136, 67956624, 69190848, 69393024, 71319312, 72505152, 78008832, 78716448, 79539832, 80621568, 80996544, 89354448, 90757584, 92853216, 94118760, 95331816
Offset: 1

Views

Author

David Consiglio, Jr., Jun 08 2021

Keywords

Examples

			14926248 is a term because 14926248 = 2^3 + 33^3 + 245^3  = 11^3 + 185^3 + 203^3  = 14^3 + 32^3 + 245^3  = 50^3 + 113^3 + 236^3  = 71^3 + 89^3 + 239^3  = 74^3 + 189^3 + 196^3  = 89^3 + 185^3 + 197^3  = 98^3 + 148^3 + 219^3  = 105^3 + 149^3 + 217^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, 3):
        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])

A345086 Numbers that are the sum of three third powers in seven or more ways.

Original entry on oeis.org

2016496, 2562624, 4525632, 4783680, 5268024, 5618250, 6366816, 6525000, 6755328, 7374375, 7451352, 7457120, 8275392, 9063144, 9086104, 9931167, 10036872, 10266138, 10371024, 10973880, 12002472, 12452049, 12742920, 12983517, 13581352, 13639816, 13641480
Offset: 1

Views

Author

David Consiglio, Jr., Jun 07 2021

Keywords

Examples

			2016496 is a term because 2016496 = 5^3 + 71^3 + 117^3 = 9^3 + 65^3 + 119^3 = 18^3 + 20^3 + 125^3 = 46^3 + 96^3 + 99^3 = 53^3 + 59^3 + 117^3 = 65^3 + 89^3 + 99^3 = 82^3 + 84^3 + 93^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, 3):
        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])

A345088 Numbers that are the sum of three third powers in exactly eight ways.

Original entry on oeis.org

2562624, 5618250, 6525000, 6755328, 7374375, 12742920, 13581352, 14027112, 14288373, 18443160, 20500992, 22783032, 23113728, 25305048, 26936064, 27131840, 29515968, 30205440, 32835375, 38269440, 39317832, 39339000, 40189248, 42144192, 42183504, 43077952
Offset: 1

Views

Author

David Consiglio, Jr., Jun 07 2021

Keywords

Comments

Differs from A345087 at term 10 because 14926248 = 2^3 + 33^3 + 245^3 = 11^3 + 185^3 + 203^3 = 14^3 + 32^3 + 245^3 = 50^3 + 113^3 + 236^3 = 71^3 + 89^3 + 239^3 = 74^3 + 189^3 + 196^3 = 89^3 + 185^3 + 197^3 = 98^3 + 148^3 + 219^3 = 105^3 + 149^3 + 217^3.

Examples

			2562624 is a term because 2562624 = 7^3 + 35^3 + 135^3  = 7^3 + 63^3 + 131^3  = 11^3 + 99^3 + 115^3  = 16^3 + 45^3 + 134^3  = 29^3 + 102^3 + 112^3  = 35^3 + 59^3 + 131^3  = 50^3 + 84^3 + 121^3  = 68^3 + 71^3 + 122^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, 3):
        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])

A344737 Numbers that are the sum of three fourth powers in eight or more ways.

Original entry on oeis.org

5745705602, 8185089458, 11054952818, 14355295682, 21789116258, 22247419922, 26839201298, 29428835618, 31861462178, 37314202562, 38214512882, 41923075922, 46543615202, 49511121842, 51711350418, 54438780578, 56255300738, 59223741122, 62862779042, 63429959138
Offset: 1

Views

Author

David Consiglio, Jr., May 27 2021

Keywords

Examples

			5745705602 is a term because 5745705602 = 3^4 + 230^4 + 233^4 = 25^4 + 218^4 + 243^4 = 43^4 + 207^4 + 250^4 = 58^4 + 197^4 + 255^4 = 85^4 + 177^4 + 262^4 = 90^4 + 173^4 + 263^4 = 102^4 + 163^4 + 265^4 = 122^4 + 145^4 + 267^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, 3):
        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])

A347362 Smallest number which can be decomposed into exactly n sums of three distinct positive cubes, but cannot be decomposed into more than one such sum containing the same cube.

Original entry on oeis.org

36, 1009, 12384, 82278, 746992, 5401404, 15685704, 26936064, 137763072, 251066304, 857520000, 618817536, 3032856000, 2050677000, 6100691904, 36013192704, 16405416000, 96569712000, 48805535232, 131243328000, 611996202000, 201153672000
Offset: 1

Views

Author

Gleb Ivanov, Aug 29 2021

Keywords

Comments

No cube should appear in two or more sums. 5104 = 15^3 + 10^3 + 9^3 = 15^3 + 12^3 + 1^3 = 16^3 + 10^3 + 2^3 is not a(3), because 15^3 appears in more than one sum.

Examples

			a(1) = 36 = 1^3 + 2^3 + 3^3.
a(2) = 1009 = 1^3 + 2^3 + 10^3 = 4^3 + 6^3 + 9^3.
a(3) = 12384 = 1^3 + 6^3 + 23^3 = 2^3 + 12^3 + 22^3 = 15^3 + 16^3 + 17^3.
		

Crossrefs

Programs

  • Mathematica
    Monitor[Do[k=1;While[Length@Union@Flatten[p=PowersRepresentations[k,3,3]]!=n*3||Length@p!=n||MemberQ[Flatten@p,0],k++];Print@k,{n,10}],k] (* Giorgos Kalogeropoulos, Sep 03 2021 *)

Extensions

a(13)-a(15) from Jon E. Schoenfield, Sep 02 2021
a(16)-a(22) from Gleb Ivanov, Sep 12 2021
Showing 1-7 of 7 results.