A084528 Partial sums of A084529. Positions of ones in the first differences of A084526.
1, 2, 5, 17, 59, 201, 703, 2405
Offset: 1
Keywords
Links
- A. Karttunen, Scheme-program for computing this sequence
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
The successive site swaps are: 3; 4,2; 4,4,1; 5,2,2; 5,3,1; 4,4,4,0; 4,5,3,0; ... See A084522.
A084509 := n -> `if`((n<4),n!,6*(4^(n-3))); INVERT([seq(A084519(n),n=1..12)]);
LinearRecurrence[{4},{1,2,6},30] (* Harvey P. Dale, Aug 23 2018 *)
INVERTi([seq(A084509(n),n=1..80)]); with(combinat); A084519 := proc(n) option remember; local c,i,k; A084509(n)-add(add(mul(A084519(i),i=c),c=composition(n,k)),k=2..n); end;
LinearRecurrence[{3,2,2},{1,1,3},30] (* Harvey P. Dale, Jul 20 2013 *)
Comments