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.

A287936 Numerator of moments of Rvachëv function up(x).

Original entry on oeis.org

1, 1, 19, 583, 132809, 46840699, 4068990560161, 1204567303451311, 4146897304424408411, 18814360006695807527868793, 21431473463327429953796293981397, 911368783375270623395381542054690099, 3805483535214088799368825731508632105336401423
Offset: 0

Views

Author

Juan Arias-de-Reyna, Jun 03 2017

Keywords

Comments

a(n)/A287937(n) is equal to the integral of t^(2n) * up(t), the moment of the Rvachëv function. The Rvachëv function is related to the Fabius function; up(x)=F(x+1) for |x|<1 and up(x)=0 for |x|>=1, where F is the Fabius function.

Crossrefs

Programs

  • Mathematica
    c[0] = 1;
    c[n_] := c[n] =
       Sum[Binomial[2 n + 1, 2 k] c[k], {k, 0, n - 1}]/((2 n + 1) (2^(2 n) - 1));
    Table[Numerator[c[n]], {n, 0, 30}]

Formula

Recurrence c(0)=1, c(n)=Sum_{k=0..n-1}(binomial(2n+1,2k) c_k)/((2n+1)*(2^(2n)-1)), where c(n)=a(n)/A287937(n).