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.

A075090 Even perfect powers: numbers of the form (2*m)^k for some m>=1 and k>=2.

Original entry on oeis.org

4, 8, 16, 32, 36, 64, 100, 128, 144, 196, 216, 256, 324, 400, 484, 512, 576, 676, 784, 900, 1000, 1024, 1156, 1296, 1444, 1600, 1728, 1764, 1936, 2048, 2116, 2304, 2500, 2704, 2744, 2916, 3136, 3364, 3600, 3844, 4096, 4356, 4624, 4900, 5184, 5476, 5776, 5832
Offset: 1

Views

Author

Zak Seidov, Oct 11 2002

Keywords

Crossrefs

Intersection of A005843 and A001597.

Programs

  • Haskell
    a075090 n = a075090_list !! (n-1)
    a075090_list = filter even a001597_list  -- Reinhard Zumkeller, Oct 04 2012
    
  • Maple
    q:= n-> n::even and igcd(seq(i[2], i=ifactors(n)[2]))>1:
    select(q, [$1..6000])[];  # Alois P. Heinz, May 04 2022
  • Mathematica
    Take[Union[Flatten[Table[a^b, {a, 2, 100, 2}, {b, 2, 15}]]], 50] (* Alonso del Arte, Nov 22 2011 *)
  • PARI
    isok(m) = !(m%2) && ispower(m); \\ Michel Marcus, May 03 2022

Formula

Sum_{n>=1} 1/a(n) = -Sum_{k>=2} mu(k)*zeta(k)/2^k = 0.5854268109... - Amiram Eldar, Dec 19 2020

Extensions

Name formula corrected by Kevin Ryde, May 04 2022