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.

A364362 Consider all the ways to make sequences of distinct nonnegative integers using all the digits of n, such that no term has leading 0's or appears more than once in the sequence. a(n) is the minimum possible sum of any sequence of n.

This page as a plain text file.
%I A364362 #26 Jan 09 2025 19:11:30
%S A364362 0,1,2,3,4,5,6,7,8,9,1,11,3,4,5,6,7,8,9,10,2,3,22,5,6,7,8,9,10,11,3,4,
%T A364362 5,33,7,8,9,10,11,12,4,5,6,7,44,9,10,11,12,13,5,6,7,8,9,55,11,12,13,
%U A364362 14,6,7,8,9,10,11,66,13,14,15,7,8,9,10,11,12,13
%N A364362 Consider all the ways to make sequences of distinct nonnegative integers using all the digits of n, such that no term has leading 0's or appears more than once in the sequence. a(n) is the minimum possible sum of any sequence of n.
%C A364362 Leading 0's are not permitted on any of the terms of the sequences of n. None of the terms are allowed to repeat in a given sequence of n.
%C A364362 Note, this sequence is the same as A331472 until n >= 100.
%H A364362 Thomas Richardson, <a href="/A364362/b364362.txt">Table of n, a(n) for n = 0..10000</a>
%e A364362 For n = 101, the following sequences can be made:
%e A364362   1-term sequences: {101}, {110};
%e A364362   2-term sequences: {10, 1}, {11, 0}, {1, 10}, {0, 11}.
%e A364362 Their sums are 101, 110, 10+1=11, 11+0=11, 1+10=11, and 0+11=11, respectively; the minimum sum is 11, so a(101) = 11.
%K A364362 nonn,base
%O A364362 0,3
%A A364362 _Thomas Richardson_, Jul 20 2023