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.

A370458 Partial products of A051179.

Original entry on oeis.org

1, 3, 45, 11475, 752014125, 3229876072253041875, 59580697294650083747194059426068878125, 20274260698223485458204828871028994444941136941453077244297515184669623921875
Offset: 0

Views

Author

Amiram Eldar, Feb 19 2024

Keywords

Crossrefs

Programs

  • Mathematica
    FoldList[Times, Table[2^(2^n) - 1, {n, 0, 7}]]
  • PARI
    lista(nmax) = {my(v = 1); for(i = 0, nmax, v *= (2^(2^i) - 1); print1(v, ", "));}
    
  • Python
    from math import prod
    def A370458(n): return prod((1<<(1<Chai Wah Wu, Feb 19 2024

Formula

a(n) = Product_{k=0..n} A051179(k).
Sum_{n>=0} 1/a(n) = A258714 = 1/A215016 - 3/2 = 1.355642702854... (Knuth, 2013).