OFFSET
1,1
LINKS
Wikipedia, Caesar cipher
FORMULA
a(n) = 1 + (2*n mod 26).
MATHEMATICA
Clear[a, n, m];
a = Table[1 + Mod[n + m, 26], {m, 1, 26}, {n, 1, 26}];
Table[a[[n, n]], {n, 1, Length[a]}]
CROSSREFS
KEYWORD
nonn,less,fini,full
AUTHOR
Roger L. Bagula, Jan 25 2010
EXTENSIONS
Keywords added, spelling corrected by the Assoc. Editors of the OEIS, Feb 02 2010
STATUS
approved