A068890 a(1) = 1; a(n) = smallest nontrivial n-th power with property that digits alternate in parity.
1, 4, 8, 16, 32, 729, 2187, 256
Offset: 1
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.
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
Comments