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

A101744 Triangular numbers which are 10-almost primes.

Original entry on oeis.org

32640, 73920, 130816, 165600, 204480, 265356, 294528, 401856, 592416, 839160, 947376, 990528, 1279200, 1445850, 1492128, 1606528, 1842240, 1844160, 2031120, 2049300, 2821500, 2956096, 3571128, 3963520, 4148640, 4250070, 4335040
Offset: 1

Views

Author

Jonathan Vos Post, Dec 14 2004

Keywords

Comments

A101745 contains the indices of this sequence, i.e. T(n) for what values of n are these 10-almost primes.

Examples

			a(1) = 32640 because that is the smallest triangular number which is also a 10-almost prime; specifically T(255) = 255*(255+1)/2 = 32640 = 2^7 * 3 * 5 * 17.
		

References

  • Ball, W. W. R. and Coxeter, H. S. M. Mathematical Recreations and Essays, 13th ed. New York: Dover, p. 59, 1987.
  • Conway, J. H. and Guy, R. K. The Book of Numbers. New York: Springer-Verlag, pp. 33-38, 1996.
  • Dudeney, H. E. Amusements in Mathematics. New York: Dover, pp. 67 and 167, 1970.

Crossrefs

Programs

  • Mathematica
    BigOmega[n_Integer]:=Plus@@Last[Transpose[FactorInteger[n]]]; Select[Table[n*(n+1)/2, {n, 2, 5000}], BigOmega[ # ]==10&] (* Ray Chandler, Dec 14 2004 *)
  • PARI
    list(lim)=my(v=List(),cur,last=3,n=256,t); while((t=n*(n-1)/2) <= lim, cur=bigomega(n); if(cur+old==11, listput(v,t)); old=cur; n++); Vec(v) \\ Charles R Greathouse IV, Feb 05 2017

Formula

a(n) is in the intersection of {A000217} and {A046314}. Integers of the form k*(k+1)/2 which have exactly 10 prime factors.

Extensions

More terms from Ray Chandler, Dec 14 2004

A333771 Triangular numbers that are the product of four distinct primes.

Original entry on oeis.org

210, 1326, 1770, 1830, 2145, 2346, 2415, 2926, 3003, 3486, 4186, 4278, 5565, 6105, 6555, 6670, 7626, 8385, 8646, 9730, 11935, 12246, 13695, 16653, 17205, 17391, 17578, 18915, 22155, 22578, 24531, 25878, 26106, 27730, 27966, 28203, 30381, 32385, 33411, 35245
Offset: 1

Views

Author

Jon E. Schoenfield, Apr 04 2020

Keywords

Comments

The maximum exponent for each prime in the factorization of each term is one. - Harvey P. Dale, Jul 21 2021

Examples

			The 20th triangular number, T(20) = 20*21/2 = 210 = 2 * 3 * 5 * 7, so 210 is a term.
T(1333) = 889111 = 23 * 29 * 31 * 43, so 889111 is a term.
		

Crossrefs

Cf. A000217 (triangular numbers), A068443 (triangular numbers that are the product of 2 distinct primes), A128896 (triangular numbers that are the product of 3 distinct primes).

Programs

  • Maple
    q:= n-> map(i-> i[2], ifactors(n)[2])=[1$4]:
    select(q, [seq(n*(n+1)/2, n=0..300)])[];  # Alois P. Heinz, Apr 04 2020
  • Mathematica
    Select[Accumulate[Range[300]],PrimeNu[#]==PrimeOmega[#]==4&] (* Harvey P. Dale, Jul 21 2021 *)
Showing 1-2 of 2 results.