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.

A111730 6-almost primes with semiprime digits (digits 4, 6, 9 only).

Original entry on oeis.org

64, 96, 4644, 4944, 6664, 6966, 9464, 9996, 44464, 44944, 46496, 46644, 49644, 49696, 64449, 64496, 66444, 66696, 69444, 69496, 69966, 94496, 94644, 94696, 96496, 96944, 99666, 99944, 444496, 444664, 444696, 444996, 446664, 446944, 446964, 449469, 449694, 449964, 464496, 464646, 464664, 464994, 469464, 494494, 494944, 494949, 494964, 496464, 499446, 499944, 644464, 644944
Offset: 1

Views

Author

Jonathan Vos Post, Nov 18 2005

Keywords

Examples

			64 = 2^6
96 = 2^5 * 3
4644 = 2^2 * 3^3 * 43
4944 = 2^4 * 3 * 103
6664 = 2^3 * 7^2 * 17
6966 = 2 * 3^4 * 43
9464 = 2^3 * 7 * 13^2
9996 = 2^2 * 3 * 7^2 * 17
44464 = 2^4 * 7 * 397
44944 = 2^4 * 53^2 = 212^2
46496 = 2^5 * 1453
		

Crossrefs

Intersection of A046306 and A107665.

Programs

  • Mathematica
    Select[Range[645000],ContainsOnly[IntegerDigits[#],{4,6,9}]&&PrimeOmega[#]==6&] (* James C. McMahon, Jun 05 2024 *)
  • PARI
    isok(k) = (bigomega(k) == 6) && (#setminus(Set(digits(k)), Set([4,6,9])) == 0); \\ Michel Marcus, Apr 13 2022

Extensions

Missing a(1)=64 prepended and several terms corrected by Georg Fischer and Michel Marcus, Apr 13 2022