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”).
%I #10 Dec 30 2012 02:31:25
%S 1,56,225792,59074412544,990862210530017280,
%T 1063897728694258113372487680,73110216322082119251081045710796226560,
%U 321541978498155599038038914825594113520368216965120
%N Pseudo Galois numbers for d=8; order of group AGL(n,2^3).
%H Vincenzo Librandi, <a href="/A028670/b028670.txt">Table of n, a(n) for n = 0..33</a>
%F a(n) = d^n * product(d^n - d^k, k=0..n-1).
%t FoldList[ #1*8^#2 (8^#2-1)&, 1, Range[ 20 ] ]
%K nonn
%O 0,2
%A _Olivier Gérard_