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!)
A261215 Triangle read by rows: T(n, k) is the number of squarefree integers x such that x<=primorial(n) and omega(n) = k with 0<=k<=n. 1
1, 1, 1, 1, 3, 1, 1, 10, 7, 1, 1, 46, 62, 19, 1, 1, 343, 643, 359, 58, 1, 1, 3248, 7429, 5723, 1708, 152, 1, 1, 42331, 110373, 104928, 44365, 7926, 422, 1, 1, 646029, 1848729, 2024368, 1068664, 276833, 31108, 995, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
EXAMPLE
Triangle begins:
1;
1, 1;
1, 3, 1;
1, 10, 7, 1;
1, 46, 62, 19, 1;
1, 343, 643, 359, 58, 1;
...
PROG
(PARI) primo(n) = prod(i=1, n, prime(i));
tabl(nn) = {v = vector(1); na = 1; for (n=0, nn, nb = primo(n); for (i=na, primo(n), if (issquarefree(i), v[1+omega(i)]++); ); print(v); v = concat(v, 0); na = nb + 1; ); }
CROSSREFS
Cf. A002110 (primorials), A000849 (1st column), A001221 (omega), A005117 (squarefrees), A092479 (similar triangle).
Sequence in context: A060543 A267751 A185996 * A176157 A176156 A172339
KEYWORD
nonn,tabl
AUTHOR
Michel Marcus, Aug 12 2015
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)