Post Reply 
OEIS featured in The New York Times
07-25-2024, 11:59 PM (This post was last modified: 07-26-2024 12:03 AM by Gil.)
Post: #15
RE: OEIS featured in The New York Times
By the way, it seems on HP50G/EMU48 that putting the condition/result before the IF THEN END is faster for the following program:

Code:
\<<
  \<< 1 100000
    START 1
      IF
      THEN
      END
    NEXT
  \>> TEVAL
\>>

than putting the condition/result just after the IF as here:
Code:
\<<
  \<< 1 100000
    START
      IF 1
      THEN
      END
    NEXT
  \>> TEVAL
\>>
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: OEIS featured in The New York Times - Gil - 07-25-2024 11:59 PM



User(s) browsing this thread: 7 Guest(s)