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.

Previous Showing 11-12 of 12 results.

A359017 a(n) is the index of the smallest triangular number with exactly n distinct prime factors.

Original entry on oeis.org

1, 2, 3, 11, 20, 84, 455, 1364, 10659, 58695, 254540, 728364, 13516580, 133595384, 812646120, 5327923964, 68971338435, 838101203939, 7588384207404, 69322940121435, 490005293940084
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 12 2022

Keywords

Crossrefs

Programs

  • PARI
    a(n) = my(k=1); while(omega(k*(k+1)/2) != n, k++); k; \\ Michel Marcus, Feb 26 2023

Extensions

a(19)-a(20) from Michael S. Branicky, Feb 25 2023

A375658 The smallest triangular number that begins a run of at least n consecutive triangular numbers with the same number of distinct prime factors.

Original entry on oeis.org

1, 6, 6, 6, 6, 6, 6, 6, 103327500, 1977230170, 214596675756, 2796022463625, 32291440570378, 32291440570378, 549091407981061, 4680505857819681, 96914999755056255, 96914999755056255
Offset: 1

Views

Author

Shyam Sunder Gupta, Aug 23 2024

Keywords

Examples

			a(8) = 6 because 6 is the smallest triangular number that begins a run of 8 consecutive triangular numbers (6, 10, 15, 21, 28, 36, 45, 55) with the same number of distinct prime factors, i.e. 2.
a(9) = 103327500 because 103327500 is the smallest triangular number that begins a run of 9 consecutive triangular numbers (103327500, 103341876, 103356253, 103370631, 103385010, 103399390,  103413771, 103428153, 103442536) with the same number of distinct prime factors, i.e. 5.
		

Crossrefs

Previous Showing 11-12 of 12 results.