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.

A056821 Totient of the Woodall numbers (A003261), n*2^n -1.

Original entry on oeis.org

1, 6, 22, 36, 104, 382, 712, 1936, 4320, 6824, 15012, 46992, 79344, 183000, 421008, 480000, 1453784, 4658784, 8877792, 20958480, 38887680, 61284600, 110250264, 388201176, 719023536, 1734432480, 2889658368, 4745378304, 10350643968, 32212254718, 66251144568
Offset: 1

Views

Author

Robert G. Wilson v, Aug 31 2000

Keywords

Crossrefs

Programs

  • Magma
    [EulerPhi(n*2^n-1): n in [1..30]]; // Vincenzo Librandi, Apr 15 2019
    
  • Maple
    a:= n-> numtheory[phi](n*2^n-1):
    seq(a(n), n=1..35);  # Alois P. Heinz, Apr 15 2019
  • Mathematica
    Table[EulerPhi[n 2^n - 1], {n, 1, 35}]
  • PARI
    a(n) = eulerphi(n*2^n -1); \\ Michel Marcus, Apr 15 2019

Formula

a(n) = A000010(A003261(n)).