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.

A072596 Nonsquares with A072594(n) = 0.

Original entry on oeis.org

70, 280, 630, 646, 1120, 1750, 1798, 2145, 2520, 2584, 3430, 3526, 4480, 5670, 5814, 5865, 6006, 7000, 7192, 8470, 8580, 9177, 10080, 10336, 11305, 11830, 13110, 13720, 14104, 15750, 16150, 16182, 16422, 17920, 19305, 20230, 20553, 20806
Offset: 1

Views

Author

Reinhard Zumkeller, Jun 23 2002

Keywords

Comments

A010052(a(n)) = 0. - Reinhard Zumkeller, Nov 17 2012

Crossrefs

Cf. A072595.

Programs

  • Haskell
    a072596 n = a072596_list !! (n-1)
    a072596_list = filter ((== 0) . a010052) a072595_list
    -- Reinhard Zumkeller, Nov 17 2012
    
  • PARI
    is(n)=if(issquare(n), return(0)); my(f=factor(n), t); for(i=1, #f~, if(f[i, 2]%2, t=bitxor(t, f[i, 1]))); t==0 \\ Charles R Greathouse IV, Aug 28 2016