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.

A255266 Numbers representable in more than one way as x*y*(x+y), where x>=y>1.

Original entry on oeis.org

240, 390, 810, 880, 1008, 1020, 1680, 1920, 2100, 2310, 2970, 3120, 3360, 3696, 3750, 4320, 4914, 5460, 5670, 6090, 6270, 6480, 6630, 7040, 7380, 7440, 7770, 8064, 8160, 8190, 8448, 8580, 8976, 9240, 9520, 10290, 10530, 10640, 11340, 11856, 12474, 13440, 13776, 14040
Offset: 1

Views

Author

Alex Ratushnyak, Feb 19 2015

Keywords

Examples

			a(3) = 810 = 15*3*(15+3) = 9*6*(9+6).
		

Crossrefs

Programs

  • Python
    TOP = 100000
    a = [0]*TOP
    for y in range(2, TOP//2):
      for x in range(y, TOP//2):
        k = x*y*(x+y)
        if k>=TOP: break
        a[k]+=1
    print([n for n in range(TOP) if a[n]>1])