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.

A287937 Denominator of moments of Rvachëv function up(x).

Original entry on oeis.org

1, 9, 675, 59535, 32531625, 24405225075, 4133856862760625, 2232691548877164375, 13301767332333178846875, 100028040755473167511640090625, 182171989134769427819794434994453125, 12012265189685856975048179723754213046875, 75749878923357625026812035792140968086378130859375
Offset: 0

Views

Author

Juan Arias-de-Reyna, Jun 03 2017

Keywords

Examples

			A287936(n)/a(n) = 1/1, 1/9, 19/675, 583/59535, ...
		

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[Denominator[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)=A287936(n)/a(n).