login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A112568
Secondary diagonal of square table A112564 of generalized Flavius Josephus sieves.
6
1, 3, 13, 61, 241, 1051, 5041, 20161, 91081, 392041, 1681681, 6530173, 27168961, 115590931
OFFSET
1,2
PROG
(PARI) {a(n)=local(A=n, B=0, k=0); if(n==0, 1, until(A==B, k=k+1; if(k%(n+1)==0, k=k+1); B=A; A=floor(A*(k+1)/k)); 1+A)}
CROSSREFS
Sequence in context: A328704 A341077 A357749 * A104089 A334150 A239995
KEYWORD
more,nonn
AUTHOR
Paul D. Hanna, Oct 14 2005
STATUS
approved