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!)
A080772 Numbers of numbers <= n having prime factors <= k, triangular array read by rows. 0
1, 1, 2, 1, 2, 3, 1, 2, 4, 4, 1, 2, 4, 4, 5, 1, 2, 4, 4, 6, 6, 1, 2, 4, 4, 6, 6, 7, 1, 2, 4, 4, 6, 6, 8, 8, 1, 2, 4, 4, 6, 6, 9, 9, 9, 1, 2, 4, 4, 6, 6, 10, 10, 10, 10, 1, 2, 4, 4, 6, 6, 10, 10, 10, 10, 11, 1, 2, 4, 4, 6, 6, 10, 10, 10, 10, 12, 12, 1, 2, 4, 4, 6, 6, 10, 10, 10, 10, 12, 12, 13, 1, 2, 4, 4 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
T(n,k) = #{m: 1<=m<=n and p<=k for prime factors of m}.
LINKS
FORMULA
T(n, n)=n and T(n, k-1) = if k is prime then k-1 else T(n, k), 1<k<=n.
EXAMPLE
Triangle begins:
................. 1
............... 1...2
............. 1...2...3
........... 1...2...4...4
......... 1...2...4...4...5
....... 1...2...4...4...6...6
..... 1...2...4...4...6...6...7
... 1...2...4...4...6...6...8...8.
MATHEMATICA
T[n_, k_] := T[n, k] = If[k == n, n, If[PrimeQ[k+1], k, T[n, k+1]]];
Table[T[n, k], {n, 1, 14}, {k, 1, n}] // Flatten (* Jean-François Alcover, Sep 19 2021 *)
CROSSREFS
Sequence in context: A194914 A195076 A163491 * A259324 A216274 A145111
KEYWORD
nonn,tabl
AUTHOR
Reinhard Zumkeller, Mar 10 2003
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 July 2 23:09 EDT 2024. Contains 373960 sequences. (Running on oeis4.)