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

A321450 Numbers that are sums of consecutive pentagonal pyramidal numbers (A002411).

Original entry on oeis.org

0, 1, 6, 7, 18, 24, 25, 40, 58, 64, 65, 75, 115, 126, 133, 139, 140, 196, 201, 241, 259, 265, 266, 288, 322, 397, 405, 437, 455, 461, 462, 484, 550, 610, 685, 693, 725, 726, 743, 749, 750, 889, 936, 955, 1015, 1090, 1130, 1148, 1154, 1155, 1183, 1243, 1276, 1439
Offset: 1

Views

Author

Ilya Gutkovskiy, Dec 21 2018

Keywords

Crossrefs

A322651 Numbers that are sums of consecutive hexagonal pyramidal numbers (A002412).

Original entry on oeis.org

0, 1, 7, 8, 22, 29, 30, 50, 72, 79, 80, 95, 145, 161, 167, 174, 175, 252, 256, 306, 328, 335, 336, 372, 413, 508, 525, 558, 580, 587, 588, 624, 715, 785, 880, 897, 930, 946, 952, 959, 960, 1149, 1222, 1240, 1310, 1405, 1455, 1477, 1484, 1485, 1547, 1612, 1661, 1864, 1925
Offset: 1

Views

Author

Ilya Gutkovskiy, Dec 21 2018

Keywords

Crossrefs

A322652 Numbers that are sums of consecutive heptagonal pyramidal numbers (A002413).

Original entry on oeis.org

0, 1, 8, 9, 26, 34, 35, 60, 86, 94, 95, 115, 175, 196, 201, 209, 210, 308, 311, 371, 397, 405, 406, 456, 504, 619, 645, 679, 705, 713, 714, 764, 880, 960, 1075, 1101, 1135, 1161, 1166, 1169, 1170, 1409, 1508, 1525, 1605, 1720, 1780, 1806, 1814, 1815, 1911, 1981, 2046, 2289, 2380
Offset: 1

Views

Author

Ilya Gutkovskiy, Dec 21 2018

Keywords

Crossrefs

Programs

  • Mathematica
    imax = 55;
    A002413 = LinearRecurrence[{4, -6, 4, -1}, {1, 8, 26, 60}, imax];
    Join[{0}, Table[A002413[[i ;; j]] // Total, {i, 1, imax}, {j, i, imax}] // Flatten // Union][[;; imax]] (* Jean-François Alcover, Nov 11 2024 *)
Showing 1-3 of 3 results.