cp's OEIS Frontend

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.

Previous Showing 11-14 of 14 results.

A015006 q-factorial numbers for q=7.

Original entry on oeis.org

1, 1, 8, 456, 182400, 510902400, 10017774259200, 1375009641495014400, 1321109263548409835520000, 8885253784030448738183147520000, 418310711031156574478261944188764160000, 137856159231156714984163673320892478249861120000
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [n le 1 select 1 else (7^n-1)*Self(n-1)/6: n in [1..15]]; // Vincenzo Librandi, Oct 25 2012
  • Mathematica
    RecurrenceTable[{a[1]==1, a[n]==((7^n - 1) * a[n-1])/6}, a, {n, 15}] (* Vincenzo Librandi, Oct 25 2012 *)
    Table[QFactorial[n, 7], {n, 15}] (* Bruno Berselli, Aug 14 2013 *)

Formula

a(n) = Product_{k=1..n} (7^k-1)/(7-1).
a(0) = 1, a(n) = (7^n - 1)*a(n-1)/6. - Vincenzo Librandi, Oct 25 2012
From Amiram Eldar, Jul 05 2025: (Start)
a(n) = Product_{k=1..n} A023000(k).
a(n) ~ c * 7^(n*(n+1)/2)/6^n, where c = A132035. (End)

Extensions

a(0)=1 prepended by Alois P. Heinz, Sep 08 2021

A028669 Galois numbers for p=7; order of group AGL(n,7).

Original entry on oeis.org

1, 42, 98784, 11587955904, 66774437101209600, 18861003469034659931443200, 261058346935768909875766027257446400, 177055579258883302762565632026325003745732198400, 5884074751780775313126615757455645503567996488345394872320000
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    FoldList[ #1*7^#2 (7^#2-1)&, 1, Range[ 20 ] ]
    a[n_] := 7^n * Product[7^n - 7^k, {k, 0, n-1}]; Array[a, 10, 0] (* Amiram Eldar, Jul 12 2025 *)
  • PARI
    a(n) = 7^n * prod(k = 0, n-1, 7^n - 7^k); \\ Amiram Eldar, Jul 12 2025

Formula

a(n) = 7^n * Product_{k=0..n-1} (7^n - 7^k).
a(n) ~ c * 7^(n^2+n), where c = A132035. - Amiram Eldar, Jul 12 2025

A132023 Decimal expansion of Product_{k>=0} 1-1/(2*7^k).

Original entry on oeis.org

4, 5, 8, 7, 6, 6, 7, 2, 6, 6, 9, 9, 7, 6, 8, 9, 8, 5, 0, 2, 0, 0, 0, 5, 1, 5, 3, 3, 6, 9, 7, 4, 3, 7, 2, 1, 7, 8, 2, 5, 4, 6, 6, 8, 8, 7, 1, 4, 7, 3, 1, 8, 7, 0, 0, 7, 8, 2, 4, 4, 0, 1, 3, 8, 5, 0, 6, 9, 9, 7, 4, 4, 0, 3, 2, 6, 5, 9, 3, 0, 3, 6, 5, 2, 3, 7, 8, 1, 7, 1, 0, 9, 0, 4, 0, 5, 8, 4, 7, 5, 9, 8, 2
Offset: 0

Views

Author

Hieronymus Fischer, Aug 14 2007

Keywords

Examples

			0.4587667266997689850200...
		

Crossrefs

Programs

  • Mathematica
    digits = 103; NProduct[1-1/(2*7^k), {k, 0, Infinity}, NProductFactors -> 200, WorkingPrecision -> digits+5] // N[#, digits+5]& // RealDigits[#, 10, digits]& // First (* Jean-François Alcover, Feb 18 2014 *)
    RealDigits[QPochhammer[1/2, 1/7], 10, 120][[1]] (* Amiram Eldar, May 08 2023 *)

Formula

Equals lim inf_{n->oo} Product_{k=0..floor(log_7(n))} floor(n/7^k)*7^k/n.
Equals lim inf_{n->oo} A132031(n)/n^(1+floor(log_7(n)))*7^(1/2*(1+floor(log_7(n)))*floor(log_7(n))).
Equals lim inf_{n->oo} A132031(n)/n^(1+floor(log_7(n)))*7^A000217(floor(log_7(n))).
Equals 1/2*exp(-Sum_{n>0} 7^(-n)*Sum_{k|n} 1/(k*2^k)).
Equals lim inf_{n->oo} A132031(n)/A132031(n+1).
Equals Product_{n>=1} (1 - 1/A109808(n)). - Amiram Eldar, May 08 2023

A132031 Product{0<=k<=floor(log_7(n)), floor(n/7^k)}, n>=1.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 28, 30, 32, 34, 36, 38, 40, 63, 66, 69, 72, 75, 78, 81, 112, 116, 120, 124, 128, 132, 136, 175, 180, 185, 190, 195, 200, 205, 252, 258, 264, 270, 276, 282, 288, 343, 350, 357, 364, 371, 378, 385, 448, 456, 464, 472, 480, 488
Offset: 1

Views

Author

Hieronymus Fischer, Aug 20 2007

Keywords

Comments

If n is written in base-7 as n=d(m)d(m-1)d(m-2)...d(2)d(1)d(0) (where d(k) is the digit at position k) then a(n) is also the product d(m)d(m-1)d(m-2)...d(2)d(1)d(0)*d(m)d(m-1)d(m-2)...d(2)d(1)*d(m)d(m-1)d(m-2)...d(2)*...*d(m)d(m-1)d(m-2)*d(m)d(m-1)*d(m).

Examples

			a(52)=floor(52/7^0)*floor(52/7^1)*floor(52/7^2)=52*7*1=364.
a(58)=464 since 58=112(base-7) and so a(58)=112*11*1(base-7)=58*8*1=464.
		

Crossrefs

For formulas regarding a general parameter p (i.e. terms floor(n/p^k)) see A132264.
For the product of terms floor(n/p^k) for p=2 to p=12 see A098844(p=2), A132027(p=3)-A132033(p=9), A067080(p=10), A132263(p=11), A132264(p=12).
For the products of terms 1+floor(n/p^k) see A132269-A132272, A132327, A132328.

Programs

  • Mathematica
    Table[Times@@Floor[n/7^Range[0,Floor[Log[7,n]]]],{n,70}] (* Harvey P. Dale, Oct 11 2017 *)

Formula

Recurrence: a(n)=n*a(floor(n/7)); a(n*7^m)=n^m*7^(m(m+1)/2)*a(n).
a(k*7^m)=k^(m+1)*7^(m(m+1)/2), for 0
Asymptotic behavior: a(n)=O(n^((1+log_7(n))/2)this follows from the inequalities below.
a(n)<=b(n), where b(n)=n^(1+floor(log_7(n)))/7^((1+floor(log_7(n)))*floor(log_7(n))/2); equality holds for n=k*7^m, 0=0. b(n) can also be written n^(1+floor(log_7(n)))/7^A000217(floor(log_7(n))).
Also: a(n)<=3^((1-log_7(3))/2)*n^((1+log_7(n))/2)=1.270209197...*7^A000217(log_7(n)), equality holds for n=3*7^m, m>=0.
a(n)>c*b(n), where c=0.4587667266997689850200... (see constant A132023).
Also: a(n)>c*(sqrt(2)/2^log_7(sqrt(2)))*n^((1+log_7(n))/2)=0.4587667266...*1.249972544...*7^A000217(log_7(n)).
lim inf a(n)/b(n)=0.4587667266997689850200..., for n-->oo.
lim sup a(n)/b(n)=1, for n-->oo.
lim inf a(n)/n^((1+log_7(n))/2)=0.4587667266997689850200...*sqrt(2)/2^log_7(sqrt(2)), for n-->oo.
lim sup a(n)/n^((1+log_7(n))/2)=sqrt(3)/3^log_7(sqrt(3))=1.270209197..., for n-->oo.
lim inf a(n)/a(n+1)=0.4587667266997689850200... for n-->oo (see constant A132023).
Previous Showing 11-14 of 14 results.