Created
July 17, 2011 20:48
-
-
Save dgrijalva/1088041 to your computer and use it in GitHub Desktop.
standing up go project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
// The Golomb's self-describing sequence {G(n)} is the only nondecreasing sequence of | |
// natural numbers such that n appears exactly G(n) times in the sequence. | |
// The values of G(n) for the first few n are | |
// | |
// n 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 … | |
// G(n) 1 2 2 3 3 4 4 4 5 5 5 6 6 6 6 … | |
// | |
// You are given that G(103) = 86, G(106) = 6137. | |
// You are also given that ΣG(n3) = 153506976 for 1 n 103. | |
// | |
// Find ΣG(n3) for 1 n 106. | |
// | |
func main () { | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include $(GOROOT)/src/Make.inc | |
TARG=problem_341 | |
GOFILES=main.go | |
include $(GOROOT)/src/Make.cmd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment