Ask Your Question

SDawkins's profile - activity

2016-10-02 19:27:11 +0200 received badge  Good Answer (source)
2016-10-02 00:24:42 +0200 received badge  Nice Answer (source)
2016-10-01 22:39:02 +0200 received badge  Self-Learner (source)
2016-10-01 22:39:02 +0200 received badge  Teacher (source)
2016-10-01 22:36:06 +0200 answered a question How can I find the sum of a series of integers with powers eg, n^(n 1)?

sum([ i^(i+1) for i in [1, 3, 5..107] ])

2016-10-01 22:36:00 +0200 commented answer How can I find the sum of a series of integers with powers eg, n^(n 1)?

Super, thanks so much for your help.

2016-10-01 22:30:09 +0200 received badge  Scholar (source)
2016-10-01 22:30:06 +0200 received badge  Supporter (source)
2016-10-01 11:14:09 +0200 received badge  Student (source)
2016-10-01 04:32:14 +0200 asked a question How can I find the sum of a series of integers with powers eg, n^(n 1)?

I'm trying to find the sage code that will calculate the sum of 1^2 + 3^4 + 5^6....+107^108 and I'm totally stumped. Any help would be greatly appreciated. Thank you!