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.

A165636 a(n) = A091137(n)/2^n.

Original entry on oeis.org

1, 1, 3, 3, 45, 45, 945, 945, 14175, 14175, 467775, 467775, 638512875, 638512875, 1915538625, 1915538625, 488462349375, 488462349375, 194896477400625, 194896477400625, 32157918771103125, 32157918771103125, 2218896395206115625, 2218896395206115625, 3028793579456347828125, 3028793579456347828125, 9086380738369043484375
Offset: 0

Views

Author

Paul Curtz, Sep 23 2009

Keywords

Crossrefs

Programs

  • Maple
    A091137 := proc(n) local a, i, p ; a := 1 ; for i from 1 do p := ithprime(i) ; if p > n+1 then break; end if; a := a*p^floor(n/(p-1)) ; end do: a ; end proc:
    A165636 := proc(n) A091137(n)/2^n ; end proc: # R. J. Mathar, Jul 07 2011
  • PARI
    a(n)=my(p=primes(primepi(n+1)));prod(i=1,#p,p[i]^(n\(p[i]-1)))>>n \\ Charles R Greathouse IV, Jul 07 2011

Formula

a(n+1) = a(n)* A141459(n+1).