Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7278991
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T22:57:19+00:00 2026-05-28T22:57:19+00:00

Given this pseudo code of a function f(0) = 1; f(1) = 3; f(n)

  • 0

Given this pseudo code of a function

f(0) = 1; 
f(1) = 3; 
f(n) = 3 * f(n - 1) - f(n - 2); // for n >= 2.

Is there a non recursive way of doing this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T22:57:20+00:00Added an answer on May 28, 2026 at 10:57 pm

    Yes, all recursive algorithms can be converted into iterative ones. The recursive solution to your problem is something like (pseudo-code):

    def f(n):
        if n == 0: return 1
        if n == 1: return 3
        return 3 * f(n-1) - f(n-2)
    

    Since you only have to remember the previous two terms to calculate the current one, you can use something like the following pseudo-code:

    def f(n):
        if n == 0:
            return 1
        if n == 1:
            return 3
        grandparent = 1
        parent = 3
        for i = 2 to n:
            me = 3 * parent - grandparent
            grandparent = parent
            parent = me
        return me
    

    This simply handles the “recursive” termination condition first then iterates where it would normally call itself. At each iteration, you calculate the current term, then rotate the terms through the grandparent and parent.

    There is no need to keep the grandparent around once you’ve calculated the current iteration since it’s no longer used.

    In fact, it could be said that the iterative solution is better (from a performance viewpoint) since terms are not recalculated as they are in the recursive solution. The recursive solution does have a certain elegance about it though (recursive solutions generally do).


    Of course, like the Fibonacci sequence, that value you calculate rises very quickly so, if you want what’s possibly the fastest solution (you should check all performance claims, including mine), a pre-calculated lookup table may be the way to go.

    Using the following Java code to create a table of long values (that while condition is just a sneaky trick to catch overflow, which is the point at which you can stop building the array):

    class GenLookup {
        public static void main(String args[]) {
            long a = 1, b = 3, c;
            System.out.print ("long lookup[] = { " + a + "L, " + b + "L");
            c = 3 * b - a;
            while ((c + a) / 3 == b) {
                System.out.print (", " + c + "L");
                a = b; b = c; c = 3 * b - a;
            }
            System.out.println (" };");
        }
    } 
    

    gives you an array definition that you can just plug in to a lookup function, as per the following example:

    public static long fn (int n) {
        long lookup[] = { 1L, 3L, 8L, 21L, 55L, 144L, 377L, 987L, 2584L, 6765L,
            17711L, 46368L, 121393L, 317811L, 832040L, 2178309L, 5702887L,
            14930352L, 39088169L, 102334155L, 267914296L, 701408733L,
            1836311903L, 4807526976L, 12586269025L, 32951280099L, 86267571272L,
            225851433717L, 591286729879L, 1548008755920L, 4052739537881L,
            10610209857723L, 27777890035288L, 72723460248141L, 190392490709135L,
            498454011879264L, 1304969544928657L, 3416454622906707L,
            8944394323791464L, 23416728348467685L, 61305790721611591L,
            160500643816367088L, 420196140727489673L, 1100087778366101931L,
            2880067194370816120L, 7540113804746346429L };
    
        if ((n < 1) || (n > lookup.length))
            return -1L;
    
        return lookup[n-1];
    }
    

    Interestingly enough, WolframAlpha comes up with a formulaic approach that doesn’t even use iteration. If you go to their site and enter f(0)=1, f(1)=3, f(n)=3f(n-1)-f(n-2), you’ll get back the formula:

    enter image description here

    Unfortunately, it may not be as fast as the iteration, given the limited number of input values that result in something that can fit in a Java long, since it uses floating point. It’s almost certainly (but, again, you would need to check this) slower than a table lookup.

    And, it’s probably perfect in the world of maths where real-world limits like non-infinite storage don’t come into play but, possibly due to the limits of IEEE precision, it breaks down at higher values of n.

    The following functions are the equivalent of that expression and the lookup solution:

    class CheckWolf {
        public static long fn2 (int n) {
            return (long)(
                (5.0 - 3.0 * Math.sqrt(5.0)) *
                    Math.pow(((3.0 - Math.sqrt(5.0)) / 2.0), n-1) +
                (5.0 + 3.0 * Math.sqrt(5.0)) *
                    Math.pow(((3.0 + Math.sqrt(5.0)) / 2.0), n-1)
                ) / 10;
        }
    
        public static long fn (int n) {
            long lookup[] = { 1L, 3L, 8L, 21L, 55L, 144L, 377L, 987L, 2584L, 6765L,
                17711L, 46368L, 121393L, 317811L, 832040L, 2178309L, 5702887L,
                14930352L, 39088169L, 102334155L, 267914296L, 701408733L,
                1836311903L, 4807526976L, 12586269025L, 32951280099L, 86267571272L,
                225851433717L, 591286729879L, 1548008755920L, 4052739537881L,
                10610209857723L, 27777890035288L, 72723460248141L, 190392490709135L,
                498454011879264L, 1304969544928657L, 3416454622906707L,
                8944394323791464L, 23416728348467685L, 61305790721611591L,
                160500643816367088L, 420196140727489673L, 1100087778366101931L,
                2880067194370816120L, 7540113804746346429L };
            if ((n < 1) || (n > lookup.length)) return -1L;
            return lookup[n-1];
        }
    

    Now we need a mainline to compare them:

        public static void main(String args[]) {
            for (int i = 1; i < 50; i++)
                if (fn(i) != fn2(i))
                    System.out.println ("BAD:  " + i + ": " + fn(i) + ", " + fn2(i)
                        + " (" + Math.abs(fn(i) - fn2(i)) + ")");
                else
                    System.out.println ("GOOD: " + i + ": " + fn(i) + ", " + fn2(i));
            }
        }
    

    This will output:

    GOOD: 1: 1, 1
    GOOD: 2: 3, 3
    GOOD: 3: 8, 8
    GOOD: 4: 21, 21
    GOOD: 5: 55, 55
    GOOD: 6: 144, 144
    GOOD: 7: 377, 377
    GOOD: 8: 987, 987
    GOOD: 9: 2584, 2584
    GOOD: 10: 6765, 6765
    GOOD: 11: 17711, 17711
    GOOD: 12: 46368, 46368
    GOOD: 13: 121393, 121393
    GOOD: 14: 317811, 317811
    GOOD: 15: 832040, 832040
    GOOD: 16: 2178309, 2178309
    GOOD: 17: 5702887, 5702887
    GOOD: 18: 14930352, 14930352
    GOOD: 19: 39088169, 39088169
    GOOD: 20: 102334155, 102334155
    GOOD: 21: 267914296, 267914296
    GOOD: 22: 701408733, 701408733
    GOOD: 23: 1836311903, 1836311903
    GOOD: 24: 4807526976, 4807526976
    GOOD: 25: 12586269025, 12586269025
    

    Looking good up to here, some more:

    GOOD: 26: 32951280099, 32951280099
    GOOD: 27: 86267571272, 86267571272
    GOOD: 28: 225851433717, 225851433717
    GOOD: 29: 591286729879, 591286729879
    GOOD: 30: 1548008755920, 1548008755920
    GOOD: 31: 4052739537881, 4052739537881
    GOOD: 32: 10610209857723, 10610209857723
    GOOD: 33: 27777890035288, 27777890035288
    GOOD: 34: 72723460248141, 72723460248141
    GOOD: 35: 190392490709135, 190392490709135
    GOOD: 36: 498454011879264, 498454011879264
    

    But then something starts going awry:

    BAD:  37: 1304969544928657, 1304969544928658 (1)
    BAD:  38: 3416454622906707, 3416454622906709 (2)
    BAD:  39: 8944394323791464, 8944394323791472 (8)
    BAD:  40: 23416728348467685, 23416728348467705 (20)
    BAD:  41: 61305790721611591, 61305790721611648 (57)
    BAD:  42: 160500643816367088, 160500643816367232 (144)
    BAD:  43: 420196140727489673, 420196140727490048 (375)
    

    The fact that the above are tantalisingly close, and that the number of digits in the error is proportional to the number of digits in the result, indicates it’s probably a loss-of-precision problem.

    After this point, the formulaic function just starts returning the maximum long value:

    BAD:  44: 1100087778366101931, 922337203685477580 (177750574680624351)
    BAD:  45: 2880067194370816120, 922337203685477580 (1957729990685338540)
    BAD:  46: 7540113804746346429, 922337203685477580 (6617776601060868849)
    

    And then our lookup function breaks down as well since the numbers are too big for a long:

    BAD:  47: -1, 922337203685477580 (922337203685477581)
    BAD:  48: -1, 922337203685477580 (922337203685477581)
    BAD:  49: -1, 922337203685477580 (922337203685477581)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given this algorithm, I would like to know if there exists an iterative version.
I am using code::blocks, with, I believe gcc. Given the example code (this is
Given this HTML: <ul id=topnav> <li id=topnav_galleries><a href=#>Galleries</a></li> <li id=topnav_information><a href=#>Information</a></li> </ul> And this
Given this XML, what XPath returns all elements whose prop attribute contains Foo (the
Given this class class Foo { // Want to find _bar with reflection [SomeAttribute]
Given this example: <img class=a /> <img /> <img class=a /> <img class=a id=active
Given this data set: ID Name City Birthyear 1 Egon Spengler New York 1957
Given this: Public Sub timReminder_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) If DateTime.Now()
Given this HTML: <div>foo</div><div>bar</div><div>baz</div> How do you make them display inline like this: foo
Given this XML ... <ListBucketResult xmlns=http://s3.amazonaws.com/doc/2006-03-01/> <Name>public.rpmware.com</Name> <Prefix></Prefix> <Marker></Marker> <MaxKeys>1000</MaxKeys> <IsTruncated>false</IsTruncated> <Contents> <Key>0.dir</Key> <LastModified>2008-06-25T16:09:49.000Z</LastModified>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.