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.

A156122 a(n) = P_{2n}(sqrt(2))/sqrt(2) (see A155100).

Original entry on oeis.org

1, 6, 192, 15216, 2249472, 534437376, 186227300352, 89472023771136, 56685374949752832, 45789401925385322496, 45932606279820521766912, 56019030070478949980307456, 81629508898089483953705582592, 140066108036622450865749167702016, 279529326198310211796977967402319872
Offset: 0

Views

Author

N. J. A. Sloane, Nov 05 2009

Keywords

Crossrefs

Cf. A155100.

Programs

  • Mathematica
    p[n_, u_]:= D[Tan[x], {x, n}] /. Tan[x] -> u /. Sec[x] -> Sqrt[1 + u^2] // Expand; p[-1, u_] = 1;  Table[p[n, Sqrt[2]]/Sqrt[2], {n, -1, 100}][[2 ;; ;; 2]] (* G. C. Greubel, Sep 28 2018 *)