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.
%I A277430 #7 Oct 16 2016 14:15:01 %S A277430 72,288,2073600,33177600,2809213747200,179789679820800, %T A277430 704200217922109440000,180275255788060016640000, %U A277430 6231974256792696936191754240000,6381541638955721662660356341760000,292214732887898713986916575925267070976000000,1196911545908833132490410294989893922717696000000 %N A277430 Denominators of the Fabius function F(3/2^n). %C A277430 The Fabius function F(x) is the smooth monotone increasing function on [0, 1] satisfying F(0) = 0, F(1) = 1, F'(x) = 2*F(2*x) for 0 < x < 1/2, F'(x) = 2*F(2*(1-x)) for 1/2 < x < 1. It is infinitely differentiable at every point in the interval, but is nowhere analytic. It assumes rational values at dyadic rationals. %D A277430 Rvachev V. L., Rvachev V. A., Non-classical methods of the approximation theory in boundary value problems, Naukova Dumka, Kiev (1979) (in Russian), pages 117-125. %H A277430 Yuri Dimitrov, G. A. Edgar, <a href="http://people.math.osu.edu/edgar.2/preprints/dimitrov/paper.pdf">Solutions of Self-differential Functional Equations</a> %H A277430 G. A. Edgar, <a href="http://people.math.osu.edu/edgar.2/selfdiff/">Examples of self differential functions</a> %H A277430 J. Fabius, <a href="http://dx.doi.org/10.1007/BF00536652">A probabilistic example of a nowhere analytic C^infty-function</a>, Probability Theory and Related Fields, June 1966, Volume 5, Issue 2, pp 173-174. %H A277430 Wikipedia, <a href="http://en.wikipedia.org/wiki/Fabius_function">Fabius function</a> %e A277430 A277429/A277430 = 67/72, 73/288, 46657/2073600, 25219/33177600, 29407171/2809213747200, ... (starting from n = 2) %t A277430 c[0] = 1; %t A277430 c[k_] := c[k] = Sum[((-1)^(k - r) c[r])/(1 + 2 k - 2 r)!, {r, 0, k - 1}]/(4^k - 1); %t A277430 t[n_] := Mod[2 n + Sum[(-1)^Binomial[n, k], {k, 1, n}], 3]; %t A277430 f[x_] := Module[{k = Numerator[x], n = Log2[Denominator[x]]}, Sum[((-1)^(q + t[p - 1]) 2^(-(n - 1) n/2) (1/2 - p + k)^(n - 2 q) c[q])/(4^q (n - 2 q)!), {p, 1, k}, {q, 0, n/2}]]; %t A277430 Table[Denominator[f[3/2^n]], {n, 2, 20}] %Y A277430 Cf. A277429 (numerators), A272755, A272757, A272343. %K A277430 nonn,frac %O A277430 2,1 %A A277430 _Vladimir Reshetnikov_, Oct 14 2016