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.

A159052 Odd terms in A159051.

This page as a plain text file.
%I A159052 #8 Aug 01 2015 10:18:34
%S A159052 1037,1157,20737,250973,854813,1055617,4042469,8588477
%N A159052 Odd terms in A159051.
%t A159052 lst={};Do[If[Mod[(Fibonacci[n-2]),n]==0,If[OddQ[n],AppendTo[lst,n]]],{n,3*8!}];lst
%t A159052 a = c = 0; b = 1; lst = {}; Do[c = a + b; If[ Mod[a, n] == 0 && OddQ@n, Print@n]; a = b; b = c, {n, 2, 10^7}] (* _Robert G. Wilson v_, Apr 05 2009 *)
%Y A159052 Cf. A123976, A159051.
%K A159052 nonn
%O A159052 1,1
%A A159052 _Vladimir Joseph Stephan Orlovsky_, Apr 03 2009
%E A159052 a(4) - a(8) from _Robert G. Wilson v_, Apr 05 2009
%E A159052 Edited by _N. J. A. Sloane_, Apr 06 2009
%E A159052 Erroneous term 1 deleted by _N. J. A. Sloane_, Dec 20 2014