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.

Showing 1-1 of 1 results.

A259178 Numbers k such that (4^k - 1)/3 is squarefree.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17, 19, 22, 23, 24, 25, 26, 28, 29, 31, 32, 33, 34, 35, 37, 38, 39, 41, 43, 44, 46, 47, 48, 49, 51, 52, 53, 56, 57, 58, 59, 61, 62, 64, 65, 66, 67, 69, 71, 73, 74, 75, 76, 77, 79, 82, 83, 85, 86, 87, 88, 89, 91, 92, 93, 94, 95, 96, 97, 98, 101, 102, 103, 104, 106, 107, 109, 111
Offset: 1

Views

Author

Omar E. Pol, Aug 02 2015

Keywords

Crossrefs

Complement of A260042.

Programs

  • Magma
    [n: n in [1..115] | IsSquarefree((4^n-1) div 3)]; // Vincenzo Librandi, Aug 03 2015
    
  • Mathematica
    Select[Range[0, 120], SquareFreeQ[((4^# - 1) / 3)] &] (* Vincenzo Librandi, Aug 03 2015 *)
  • PARI
    isok(k) = issquarefree((4^k-1)/3); \\ Michel Marcus, Feb 25 2021
Showing 1-1 of 1 results.