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.

A375530 a(n) is the denominator of Sum_{k = 1..n} prime(k) / A375529(k).

Original entry on oeis.org

1, 3, 30, 4530, 143650830, 226991170700228730, 669824890486184912549321336826596430, 7627311526552103393330686732733999706332372434754669475019405844335259730
Offset: 0

Views

Author

Rémy Sigrist and N. J. A. Sloane, Sep 04 2024

Keywords

Examples

			The first few fractions Sum_{k = 1..n} prime(k) / A375529(k) are 0/1, 2/3, 29/30, 4529/4530, 143650829/143650830, 226991170700228729/226991170700228730, ...
		

Crossrefs

Programs

  • Maple
    a:= proc(n) option remember; `if`(n=0, 1,
          ithprime(n)*a(n-1)^2+a(n-1))
        end:
    seq(a(n), n=0..7);  # Alois P. Heinz, Oct 21 2024

Formula

a(n) = prime(n)*a(n-1)^2 + a(n-1), with a(0) = 1.

Extensions

a(0)=1 prepended by Alois P. Heinz, Oct 21 2024