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.

Original entry on oeis.org

1393, 8119, 47321, 275807, 1607521, 54608393, 318281039, 1855077841, 10812186007, 367296043199, 2140758220993, 12477253282759, 72722761475561, 423859315570607, 2470433131948081, 14398739476117879, 83922003724759193
Offset: 1

Views

Author

Lekraj Beedassy, Jun 07 2004

Keywords

Crossrefs

Programs

  • Mathematica
    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 *)
    nxt[{a_,b_}]:={b,6b-a}; Select[NestList[nxt,{1,7},30][[;;,1]],CompositeQ] (* Harvey P. Dale, Mar 11 2023 *)

Extensions

More terms from Robert G. Wilson v, Jun 09 2004