All pastes #2069660 Raw Edit

Stuff

public text v1 · immutable
#2069660 ·published 2011-05-26 21:35 UTC
rendered paste body
public class UpCount {
	private long calc(int depth) {
		if (depth == 0) return 1;
		long cc = calc(depth - 1);
		return cc + (depth % 7) + ((((cc ^ depth) % 4) == 0) ? 1 : 0); 
	}
	public static void main(String[] args) {
		UpCount uc = new UpCount();
		System.out.println(uc.calc(11589));
	}
}