Successió X43953


Statement
 

pdf   zip

html

Donat un valor enter n > 1 i un valor real x llegits pel canal d’entrada, fes un programa que calculi la suma dels n primers termes de la successió següent:

n−1
i=0
xi
2i

Exemple: n = 3, x = 3:

1 + 
x
2
 + 
x2
4
 = 1 + 
3
2
 + 
9
4
 = 1 + 1.5 + 2.25 = 4.75

Observació

Per resoldre el problema no pots fer servir l’operació de potència (xy): x ** y. Altrament la nota del problema serà un 0.

Entrada

Un enter n > 1 i un real x.

Sortida

La suma de la sèrie

n−1
i=0
xi
2i
Public test cases
  • Input

    3
    3
    
    
    

    Output

    4.75
    
  • Input

    3
    5
    
    

    Output

    9.75
    
  • Information
    Author
    Jaume Baixeries
    Language
    Catalan
    Official solutions
    Python
    User solutions
    Python