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.

A033465 Numerators of the first differences of 1/(n^2 + 1).

Original entry on oeis.org

1, 3, 1, 7, 9, 11, 13, 3, 17, 19, 21, 23, 1, 27, 29, 31, 33, 7, 37, 39, 41, 43, 9, 47, 49, 51, 53, 11, 57, 59, 61, 63, 13, 67, 69, 71, 73, 3, 77, 79, 81, 83, 17, 87, 89, 91, 93, 19, 97, 99, 101, 103, 21, 107, 109, 111, 113
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A033466 (denominators).

Programs

  • Magma
    A033465:= func< n | Numerator((2*n+1)/((n^2+1)*((n+1)^2+1))) >;
    [A033465(n): n in [0..70]]; // G. C. Greubel, Oct 14 2024
    
  • Mathematica
    Numerator[Abs[Differences[1/(Range[0,60]^2+1)]]] (* Harvey P. Dale, May 01 2013 *)
  • SageMath
    def A033465(n): return numerator((2*n+1)/((n^2+1)*((n+1)^2+1)))
    [A033465(n) for n in range(71)] # G. C. Greubel, Oct 14 2024

Formula

a(n) = numerator of (2*n+1)/((n^2+1)*((n+1)^2+1)). - G. C. Greubel, Oct 14 2024