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.

A094666 Composite NSW numbers.

This page as a plain text file.
%I A094666 #10 Mar 11 2023 17:18:26
%S A094666 1393,8119,47321,275807,1607521,54608393,318281039,1855077841,
%T A094666 10812186007,367296043199,2140758220993,12477253282759,72722761475561,
%U A094666 423859315570607,2470433131948081,14398739476117879,83922003724759193
%N A094666 Composite NSW numbers.
%H A094666 J. A. Sellers, <a href="http://www.math.psu.edu/sellersj/p24.pdf">Infinitely Many Composite NSW Numbers: An Inductive Proof</a>
%H A094666 J. A. Sellers and H. Williams, <a href="http://www.math.psu.edu/sellersj/p16.pdf">On the Infinitude of Composite NSW Numbers</a>
%t A094666 a[0] = 1; a[1] = 7; a[n_] := a[n] = 6a[n - 1] - a[n - 2]; a /@ Select[ Range[23], !PrimeQ[ a[ # ]] &] (* _Robert G. Wilson v_, Jun 09 2004 *)
%t A094666 nxt[{a_,b_}]:={b,6b-a}; Select[NestList[nxt,{1,7},30][[;;,1]],CompositeQ] (* _Harvey P. Dale_, Mar 11 2023 *)
%Y A094666 Cf. A002315, A088165.
%K A094666 nonn
%O A094666 1,1
%A A094666 _Lekraj Beedassy_, Jun 07 2004
%E A094666 More terms from _Robert G. Wilson v_, Jun 09 2004