login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A051846 Digits 1..n in strict descending order n..1 interpreted in base n+1. 11
1, 7, 57, 586, 7465, 114381, 2054353, 42374116, 987654321, 25678050355, 736867805641, 23136292864686, 789018236134297, 29043982525261081, 1147797409030816545, 48471109094902544776, 2178347851919531492065, 103805969587115219182431 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
All odd-indexed (2n+1) terms are divisible by (2n+1). See A051847.
All even-indexed (2n) terms are divisible by n. - Alexander R. Povolotsky, Oct 20 2022
LINKS
Chai Wah Wu, Pandigital and penholodigital numbers, arXiv:2403.20304 [math.GM], 2024. See p. 1.
FORMULA
a(n) = Sum_{i=1..n} i*(n+1)^(i-1).
a(n) = ((n+1)^(n+1)*(n-1) + 1)/n^2 = A062806(n+1)/(n+1) - (n+1)^(n+1). - Benoit Cloitre, Sep 28 2002
a(n) = A028310(n-1) * A023811(n+1) + A199969(n+1). - M. F. Hasler, Jan 22 2013
a(n) = (n-1) * A058128(n+1) + 1. - Seiichi Manyama, Apr 10 2022
EXAMPLE
a(1) = 1,
a(2) = 2*3 + 1 = 7,
a(3) = 3*(4^2) + 2*4 + 1 = 57,
a(4) = 4*(5^3) + 3*(5^2) + 2*5 + 1 = 586.
MAPLE
a(n) := proc(n) local i; add(i*((n+1)^(i-1)), i=1..n); end;
MATHEMATICA
Array[Sum[i*(# + 1)^(i - 1), {i, #}] &, 18] (* Michael De Vlieger, Apr 04 2024 *)
PROG
(PARI) a(n)=((n+1)^(n+1)*(n-1)+1)/n^2
(Maxima) makelist(((n+1)^(n+1)*(n-1) + 1)/n^2, n, 1, 20); /* Martin Ettl, Jan 25 2013 */
(Python)
def a(n): return sum((i+1)*(n+1)**i for i in range(n))
print([a(n) for n in range(1, 20)]) # Michael S. Branicky, Apr 10 2022
CROSSREFS
The right edge of A051845.
Sequence in context: A176733 A062192 A122649 * A231540 A349116 A337556
KEYWORD
easy,base,nonn
AUTHOR
Antti Karttunen, Dec 13 1999
EXTENSIONS
Minor edits in formulas by M. F. Hasler, Oct 11 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)