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.

Showing 1-3 of 3 results.

A068903 Binomial(tau(n),omega(n)), where tau(n) is the number of divisors of n (A000005) and omega the number of distinct prime factors (A001221).

Original entry on oeis.org

1, 2, 2, 3, 2, 6, 2, 4, 3, 6, 2, 15, 2, 6, 6, 5, 2, 15, 2, 15, 6, 6, 2, 28, 3, 6, 4, 15, 2, 56, 2, 6, 6, 6, 6, 36, 2, 6, 6, 28, 2, 56, 2, 15, 15, 6, 2, 45, 3, 15, 6, 15, 2, 28, 6, 28, 6, 6, 2, 220, 2, 6, 15, 7, 6, 56, 2, 15, 6, 56, 2, 66, 2, 6, 15, 15, 6, 56
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 06 2002

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Binomial[DivisorSigma[0,n],PrimeNu[n]],{n,100}] (* Harvey P. Dale, Oct 17 2016 *)
  • PARI
    a(n) = binomial(numdiv(n), omega(n)); \\ Michel Marcus, Apr 23 2017

Extensions

More terms from Harvey P. Dale, Oct 17 2016

A068905 Binomial(sigma(n),omega(n)), where sigma(n) is the sum of divisors of n (A000203) and omega the number of distinct prime factors (A001221).

Original entry on oeis.org

1, 3, 4, 7, 6, 66, 8, 15, 13, 153, 12, 378, 14, 276, 276, 31, 18, 741, 20, 861, 496, 630, 24, 1770, 31, 861, 40, 1540, 30, 59640, 32, 63, 1128, 1431, 1128, 4095, 38, 1770, 1540, 4005, 42, 142880, 44, 3486, 3003, 2556, 48, 7626
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 06 2002

Keywords

Crossrefs

Programs

  • Mathematica
    Binomial[DivisorSigma[1,#],Length[FactorInteger[#]]]&/@Range[50]  (* Harvey P. Dale, Feb 18 2011 *)
  • PARI
    a(n)=binomial(sigma(n),omega(n)) \\ Charles R Greathouse IV, Feb 19 2013

A204292 Binomial(n, d(n)), where d(n) = A000005(n) is the number of divisors of n.

Original entry on oeis.org

1, 1, 3, 4, 10, 15, 21, 70, 84, 210, 55, 924, 78, 1001, 1365, 4368, 136, 18564, 171, 38760, 5985, 7315, 253, 735471, 2300, 14950, 17550, 376740, 406, 5852925, 465, 906192, 40920, 46376, 52360, 94143280, 666, 73815, 82251, 76904685, 820, 118030185, 903, 7059052, 8145060
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Binomial[n, DivisorSigma[0, n]], {n, 1, 50}] (* Vaclav Kotesovec, May 08 2021 *)
  • PARI
    vector(60,n,binomial(n,numdiv(n)))
Showing 1-3 of 3 results.