Post Reply 
HP 38G: Better than Prime for some Sequences using the built in Sequence App
03-07-2015, 08:21 AM
Post: #8
RE: HP 38G: Better than Prime for Sequences?
(03-07-2015 07:40 AM)BruceH Wrote:  
(03-07-2015 06:02 AM)Gerald H Wrote:  ... & it's a poor comment on the Prime adepts that they can't find a way to obviate the problem.
No good deed goes unpunished, as they say.

By way of revenge I offer you this:
Code:
EXPORT TT(n)
BEGIN
  IF N<=2 THEN
    RETURN(1);
  ELSE
    RETURN(TT(TT(n-1))*TT(n-TT(n-1));
  END;
END;
and set
Code:
U1(1)=1
U1(2)=1
U1(N)=TT(N)
in the Sequence symbolic view.

Could you check the value for U1(99) for me please? ;-)

Entering your prog TT exactly as depicted above & running Sequence App 99 gives the value 1, incorrect.

& for all vlues the App returns 1.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: HP 38G: Better than Prime for Sequences? - Gerald H - 03-07-2015 08:21 AM



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