The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A197871 Irregular triangle T(n,k) of the number of numbers with k prime factors (repetitions allowed) less than n^2. 0
0, 2, 1, 4, 3, 1, 6, 6, 2, 1, 9, 9, 4, 2, 11, 13, 7, 3, 1, 15, 17, 10, 4, 2, 18, 22, 13, 7, 2, 1, 22, 26, 19, 8, 4, 1, 25, 34, 22, 12, 4, 2, 30, 40, 28, 13, 7, 2, 34, 48, 32, 18, 7, 3, 1, 39, 56, 38, 21, 9, 4, 1, 44, 62, 48, 24, 11, 4, 2, 48, 75, 51, 29, 13, 6, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
REFERENCES
G. J. O. Jameson, The Prime Number Theorem, Cambridge, 2004, p.145.
LINKS
EXAMPLE
In the third row, reading from the left, 6 is the number of primes <= 16, 6 is the number of semiprimes <= 16, 2 is the number of numbers with three prime divisors (repetitions allowed) <= 16, and 1 is the number of numbers with four divisors <= 16.
The triangle begins:
0
2 1
4 3 1
6 6 2 1
9 9 4 2
11 13 7 3 1
15 17 10 4 2
...
MATHEMATICA
Join[{0}, Flatten[Table[Transpose[Tally[Table[Plus @@ Last /@ FactorInteger[i], {i, 2, n^2}]]][[2]], {n, 2, 15}]]]
PROG
(PARI) T(n, k) = #select(x->(bigomega(x) == k), [1..n^2]);
row(n) = my(v = vector(n, k, T(n, k))); my(pos); for (k=1, n, if (v[k], pos=k)); Vec(v, pos); \\ Michel Marcus, Aug 16 2022
CROSSREFS
Similar to A052130.
Sequence in context: A187883 A134543 A305540 * A093010 A179000 A210559
KEYWORD
nonn,tabf
AUTHOR
Daniel Tisdale, Oct 18 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 23 12:41 EDT 2024. Contains 372763 sequences. (Running on oeis4.)