Uses of Interface
org.episteme.core.mathematics.analysis.series.IntegerSequence
Packages that use IntegerSequence
Package
Description
Comprehensive mathematical structures, including algebra, calculus, and numerical analysis.
-
Uses of IntegerSequence in org.episteme.core.mathematics.analysis.series
Classes in org.episteme.core.mathematics.analysis.series that implement IntegerSequenceModifier and TypeClassDescriptionclassBell numbers sequence (OEIS A000110).classCatalan numbers: C(0)=1, C(n) = (2n)!classFactorial sequence: n!classFibonacci sequence: F(0) = 0, F(1) = 1, F(n) = F(n-1) + F(n-2).classPrime counting function À(n) (OEIS A000720).classPrime number sequence: 2, 3, 5, 7, 11, ...classSquare numbers sequence: a(n) = n².classTriangular numbers sequence: T(n) = n(n+1)/2. -
Uses of IntegerSequence in org.episteme.core.mathematics.loaders.oeis
Subclasses with type arguments of type IntegerSequence in org.episteme.core.mathematics.loaders.oeisModifier and TypeClassDescriptionclassWriter for exporting sequences to OEIS formats.Methods in org.episteme.core.mathematics.loaders.oeis that return types with arguments of type IntegerSequenceMethods in org.episteme.core.mathematics.loaders.oeis with parameters of type IntegerSequenceModifier and TypeMethodDescriptionstatic voidOEISWriter.exportBFile(IntegerSequence sequence, int count, PrintWriter writer) Exports a sequence to the b-file format.static voidOEISWriter.exportStripped(IntegerSequence sequence, int count, PrintWriter writer) Exports a sequence to the 'stripped' format.voidOEISWriter.save(IntegerSequence sequence, String destination)