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.

A066808 a(n) = F(n)-1 mod 2^n+1 with F(n) = n-th Fermat number = 1+2^2^n.

Original entry on oeis.org

0, 1, 1, 4, 1, 4, 16, 4, 1, 256, 16, 4, 4081, 4, 16, 256, 1, 4, 261121, 4, 65536, 256, 16, 4, 65536, 33554305, 16, 67108864, 65536, 4, 16, 4, 1, 256, 16, 262144, 68451041281, 4, 16, 256, 65536, 4, 4398042316801, 4, 65536, 35184371957761, 16, 4, 281474976645121
Offset: 0

Views

Author

Wouter Meeussen, Jan 19 2002

Keywords

Comments

All terms except n=12,18,25,36,42,45,48,55 result in a(n) that are powers of 2, whereas these exceptions (4081, 261121, 33554305, 68451041281, 4398042316801, 35184371957761, 281474976645121, 36020000925941761) are all odd.

Crossrefs

Programs

  • Maple
    a:= n-> 2&^(2^n) mod (2^n+1):
    seq(a(n), n=0..50);  # Alois P. Heinz, Jul 04 2022
  • Mathematica
    Table[ PowerMod[ 2, 2^n, 2^n+1 ], {n, 64} ]

Formula

F(n)-1=1 mod (2^n+1) for all n=2^k because F(n)=2+ F(1)F(2)..F(n-1)

Extensions

a(0)=0 prepended by Alois P. Heinz, Jul 04 2022