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

A334130 Numbers that can be written as a product of distinct triangular numbers.

Original entry on oeis.org

0, 1, 3, 6, 10, 15, 18, 21, 28, 30, 36, 45, 55, 60, 63, 66, 78, 84, 90, 91, 105, 108, 120, 126, 135, 136, 150, 153, 165, 168, 171, 180, 190, 198, 210, 216, 231, 234, 253, 270, 273, 276, 280, 300, 315, 325, 330, 351, 360, 378, 396, 406, 408, 420, 435, 450
Offset: 1

Views

Author

Ilya Gutkovskiy, Apr 14 2020

Keywords

Crossrefs

Programs

  • Maple
    N:= 1000: # for all terms <= N
    S:= {0,1}:
    for i from 2 do
      t:= i*(i+1)/2;
      if t > N then break fi;
      S:= S union select(`<=`,map(`*`,S,t),N)
    od:
    sort(convert(S,list)); # Robert Israel, Apr 21 2020
Showing 1-1 of 1 results.