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.

A048244 a(n) = A048106(A001405(n)).

Original entry on oeis.org

1, 2, 2, 4, 4, 2, 4, 8, 4, -2, 16, 8, 8, 0, 8, 16, 32, 16, 32, 16, 32, 0, 64, 32, -16, -64, -160, -256, -128, -224, 64, 128, 0, -256, 256, -128, -128, -512, 512, -256, 512, 0, 512, 0, -2048, -2816, -256, -1408, -1408, -2560, -2560, -4096, -1024, -1792, 2048
Offset: 1

Views

Author

Keywords

Comments

The terms indicate whether more, equal or fewer unitary than non-unitary divisors of the central binomial coefficient exists.

Examples

			For n = 54, binomial(54,27) has 3840 divisors of which 1024 are unitary and 2816 are not. The difference is -1792, so a(54) = -1792.
		

Crossrefs

Programs

  • Mathematica
    a[n_] := Module[{b = Binomial[n, Floor[n/2]]}, 2^(PrimeNu[b] + 1) - DivisorSigma[0, b]]; Array[a, 60] (* Amiram Eldar, Oct 05 2024 *)
  • PARI
    a048106(n) = (2^(1+omega(n)) - numdiv(n));
    a(n) = a048106(binomial(n, n\2)); \\ Michel Marcus, May 14 2018

Formula

a(n) = A034444(A001405(n)) - A048105(A001405(n)).