LetuscrackonNovember 10, 2024 Program to Find the nth term of the series 1, 1, 2, 3, 4, 9, 8, 27, 16, 81, 32, 243,64, 729, 128, 2187…,, This series is a mixture of 2 series – all the odd terms in this series…
Python1 Min Read LetuscrackonJune 11, 2024 Sequence – Based on Previous Term The program must accept an integer N as the input. The program must generate a sequence of integers based on the following conditions. –…
Python1 Min Read LetuscrackonJune 10, 2024 Print Nth term in A.P The first two terms (a1, a2) of a strictly increasing arithmetic progression (A.P) are passed as input. The program must print the Nth term…
C1 Min Read LetuscrackonJune 9, 2024 Mixed Series – From Xth term to Yth term The program must accept the first four terms of a mixed series and two integers X and Y as the input. The program must print all the terms…
C1 Min Read LetuscrackonJune 9, 2024 Arithmetic Progression – Nth term The first three terms in an arithmetic progression are passed as input. A positive integer value N (where N > 3) is also passed as the…