login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A073766
a(n) = binomial(composite(n+1), composite(n)) = binomial(A002808(n+1), A002808(n)).
2
15, 28, 9, 10, 66, 91, 15, 16, 153, 190, 21, 22, 276, 25, 26, 27, 28, 435, 496, 33, 34, 35, 36, 703, 39, 40, 861, 946, 45, 46, 1128, 49, 50, 51, 52, 1431, 55, 56, 57, 58, 1770, 1891, 63, 64, 65, 66, 2278, 69, 70, 2556, 2701, 75, 76, 77, 78, 3160, 81, 82, 3486, 85
OFFSET
1,1
COMMENTS
a(n) equals either composite(n+1) or composite(w)+1 or binomial(c,2) for some composite number c.
LINKS
MATHEMATICA
Block[{f}, f[n_] := FixedPoint[n + PrimePi@ # + 1 &, n + PrimePi[n] + 1]; Array[Binomial[f[# + 1], f[#]] &, 10^4]] (* Michael De Vlieger, Nov 05 2020 *)
PROG
(PARI) lista(nn) = {my(prec = 0); forcomposite(c=1, nn, if (prec, print1(binomial(c, prec), ", ")); prec = c; ); } \\ Michel Marcus, Mar 26 2020
CROSSREFS
Cf. A002808.
Sequence in context: A186074 A230649 A229195 * A223449 A031334 A178958
KEYWORD
nonn
AUTHOR
Labos Elemer, Aug 09 2002
EXTENSIONS
Edited by Michael De Vlieger, Nov 05 2020
STATUS
approved