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.

A229040 Fibonacci numbers in which parity of the decimal digits alternates.

Original entry on oeis.org

0, 1, 2, 3, 5, 8, 21, 34, 89, 610, 987, 4181, 6765
Offset: 1

Views

Author

Jonathan Vos Post, Sep 12 2013

Keywords

Comments

No more values through F(19000). - R. J. Mathar, Jun 30 2020

Crossrefs

Programs

  • Maple
    isA030141 := proc(n)
        dgs := convert(n,base,10) ;
        for i from 2 to nops(dgs) do
            if modp(op(i,dgs),2) = modp(op(i-1,dgs),2) then
                return false;
            end if;
        end do:
        true ;
    end proc:
    for i from 0 do
        f := combinat[fibonacci](i) ;
        if isA030141(f) then
            print(f) ;
        end if;
    end do: # R. J. Mathar, Mar 13 2015

Formula

A000045 INTERSECTION A030141.